Skip to content

Commit

Permalink
Gradle related updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rubengees committed Aug 8, 2017
1 parent a77bdc7 commit 08dfd92
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
buildscript {
ext {
version = '3.1.0'
version = '3.2.0'
group = 'com.github.proxer'

gradleVersionsPluginVersion = '0.15.0'
buildConfigPluginVersion = '1.1.8'
freefairPluginsVersion = '1.0.0'

Expand Down Expand Up @@ -39,6 +40,7 @@ buildscript {

dependencies {
classpath "gradle.plugin.de.fuerstenau:BuildConfigPlugin:$buildConfigPluginVersion"
classpath "com.github.ben-manes:gradle-versions-plugin:$gradleVersionsPluginVersion"
classpath "io.freefair.gradle:gradle-plugins:$freefairPluginsVersion"
}
}
Expand All @@ -53,5 +55,5 @@ allprojects {
}

task wrapper(type: Wrapper) {
gradleVersion = '4.1-rc-1'
gradleVersion = '4.1'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Thu Jul 27 02:05:24 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip
7 changes: 4 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'java-library'
apply plugin: 'maven-publish'

apply plugin: 'jacoco'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'de.fuerstenau.buildconfig'
apply plugin: 'io.freefair.javadoc-links'

Expand Down Expand Up @@ -57,12 +58,12 @@ buildConfig {

javadoc {
dependsOn delombok
failOnError false

source = delombok.outputDir

options.memberLevel = JavadocMemberLevel.PUBLIC
options.addBooleanOption('Xdoclint:-missing', true)

source = delombok.outputDir
failOnError = false
}

jacocoTestReport {
Expand Down

0 comments on commit 08dfd92

Please sign in to comment.