Skip to content

Commit c6ef432

Browse files
committed
updated Gradle to 5.0 and Gradle JPI plugin to 0.28.1
1 parent 3bee68c commit c6ef432

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

gradle/wrapper/gradle-wrapper.jar

861 Bytes
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Mon Jan 07 23:10:24 CET 2019
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-all.zip

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ APP_NAME="Gradle"
2828
APP_BASE_NAME=`basename "$0"`
2929

3030
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31-
DEFAULT_JVM_OPTS=""
31+
DEFAULT_JVM_OPTS='"-Xmx64m"'
3232

3333
# Use the maximum available, or set MAX_FD != -1 to use that value.
3434
MAX_FD="maximum"

gradlew.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0
1414
set APP_HOME=%DIRNAME%
1515

1616
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17-
set DEFAULT_JVM_OPTS=
17+
set DEFAULT_JVM_OPTS="-Xmx64m"
1818

1919
@rem Find java.exe
2020
if defined JAVA_HOME goto findJavaFromJavaHome

job-dsl-plugin/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212

1313
plugins {
14-
id 'org.jenkins-ci.jpi' version '0.27.0'
14+
id 'org.jenkins-ci.jpi' version '0.28.1'
1515
}
1616

1717
description = 'Jenkins plugin to leverage job-dsl-core to programmatic create jobs from inside Jenkins.'
@@ -69,11 +69,6 @@ test {
6969
*/
7070
}
7171

72-
configurations {
73-
// workaround for JENKINS-32978
74-
compile.exclude group: 'org.kohsuke', module: 'windows-package-checker'
75-
}
76-
7772
war {
7873
into('api-viewer') {
7974
from(project(':job-dsl-api-viewer').projectDir) {
@@ -85,6 +80,11 @@ war {
8580
}
8681

8782
dependencies {
83+
annotationProcessor 'net.java.sezpoz:sezpoz:1.13'
84+
annotationProcessor 'org.jenkins-ci:annotation-indexer:1.12'
85+
testAnnotationProcessor 'net.java.sezpoz:sezpoz:1.13'
86+
testAnnotationProcessor 'org.jenkins-ci:annotation-indexer:1.12'
87+
8888
compile(project(':job-dsl-core')) {
8989
exclude group: 'org.jvnet.hudson', module:'xstream'
9090
}

0 commit comments

Comments
 (0)