Skip to content

Commit 08dfd92

Browse files
committed
Gradle related updates
1 parent a77bdc7 commit 08dfd92

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
buildscript {
22
ext {
3-
version = '3.1.0'
3+
version = '3.2.0'
44
group = 'com.github.proxer'
55

6+
gradleVersionsPluginVersion = '0.15.0'
67
buildConfigPluginVersion = '1.1.8'
78
freefairPluginsVersion = '1.0.0'
89

@@ -39,6 +40,7 @@ buildscript {
3940

4041
dependencies {
4142
classpath "gradle.plugin.de.fuerstenau:BuildConfigPlugin:$buildConfigPluginVersion"
43+
classpath "com.github.ben-manes:gradle-versions-plugin:$gradleVersionsPluginVersion"
4244
classpath "io.freefair.gradle:gradle-plugins:$freefairPluginsVersion"
4345
}
4446
}
@@ -53,5 +55,5 @@ allprojects {
5355
}
5456

5557
task wrapper(type: Wrapper) {
56-
gradleVersion = '4.1-rc-1'
58+
gradleVersion = '4.1'
5759
}

gradle/wrapper/gradle-wrapper.jar

-7 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Thu Jul 27 02:05:24 CEST 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip

library/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apply plugin: 'java-library'
22
apply plugin: 'maven-publish'
33

44
apply plugin: 'jacoco'
5+
apply plugin: 'com.github.ben-manes.versions'
56
apply plugin: 'de.fuerstenau.buildconfig'
67
apply plugin: 'io.freefair.javadoc-links'
78

@@ -57,12 +58,12 @@ buildConfig {
5758

5859
javadoc {
5960
dependsOn delombok
61+
failOnError false
62+
63+
source = delombok.outputDir
6064

6165
options.memberLevel = JavadocMemberLevel.PUBLIC
6266
options.addBooleanOption('Xdoclint:-missing', true)
63-
64-
source = delombok.outputDir
65-
failOnError = false
6667
}
6768

6869
jacocoTestReport {

0 commit comments

Comments
 (0)