Skip to content

Commit 26c6ffb

Browse files
committed
Release fixes
1 parent 3b920e2 commit 26c6ffb

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,3 +218,10 @@ public void createRelease(GitHubClient client, IRepositoryIdProvider repositoryI
218218
ReleaseService releaseService = new ReleaseService(client);
219219
releaseService.createRelease(repositoryIdProvider, release);
220220
}
221+
222+
223+
if (JavaVersion.current().isJava8Compatible()) {
224+
tasks.withType(Javadoc) {
225+
options.addStringOption('Xdoclint:none', '-quiet')
226+
}
227+
}

etc/scripts/release.sh

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,3 @@ cmd="./gradlew clean uploadArchives -PSNAPSHOT=false -PLOCAL_UPLOAD=false"
109109
echo "Executing the following command"
110110
echo "${cmd}"
111111
eval "${cmd}"
112-
113-
114-
# ************************
115-
# Publish the Gradle Plugin to the Portal
116-
# ************************
117-
118-
cd $PROJECT_HOME
119-
./gradlew clean publishPlugins --configure-on-demand -PSNAPSHOT=false -PSIGNING_ENABLED=false
120-
121-
read -p "Verify the plugins on the Portal [https://plugins.gradle.org/search?term=jdroid] and press [Enter] key to continue..."

0 commit comments

Comments
 (0)