Skip to content

Commit

Permalink
Upgrade to Gradle 7.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Nov 8, 2022
1 parent c9f0de6 commit 933e588
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 19 deletions.
12 changes: 5 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,17 @@ buildscript {
}

plugins {
id 'nebula.netflixoss' version '9.1.0'
id 'com.netflix.nebula.netflixoss' version '11.1.1'
}

subprojects {
apply plugin: 'nebula.netflixoss'
apply plugin: 'checkstyle'

sourceCompatibility = 1.8
targetCompatibility = 1.8

tasks.withType(JavaCompile) {
sourceCompatibility = 1.8
targetCompatibility = 1.8
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}

tasks.withType(Javadoc) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
2 changes: 1 addition & 1 deletion hollow-diff-ui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java-library'
apply plugin: 'nebula.facet'
apply plugin: 'com.netflix.nebula.facet'

facets {
tools {
Expand Down
2 changes: 1 addition & 1 deletion hollow-explorer-ui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java-library'
apply plugin: 'nebula.facet'
apply plugin: 'com.netflix.nebula.facet'

facets {
tools {
Expand Down
4 changes: 1 addition & 3 deletions hollow-perf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ dependencies {
compileOnly 'org.openjdk.jmh:jmh-generator-annprocess:1.21'
}

compileJava {
tasks.withType(JavaCompile).configureEach {
options.compilerArgs << '-XDignore.symbol.file'
options.fork = true
options.forkOptions.executable = 'javac'
}

jmh {
Expand Down
2 changes: 1 addition & 1 deletion hollow-ui-tools/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java-library'
apply plugin: 'nebula.facet'
apply plugin: 'com.netflix.nebula.facet'

facets {
tools {
Expand Down
8 changes: 3 additions & 5 deletions hollow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ dependencies {
testImplementation 'org.assertj:assertj-core:3.15.0'
}

// quiet warnings about sun.misc.Unsafe
compileJava {
options.compilerArgs << '-XDignore.symbol.file'
options.fork = true
options.forkOptions.executable = 'javac'
tasks.withType(JavaCompile).configureEach {
options.compilerArgs << '-XDignore.symbol.file'
}


javadoc {
options.addStringOption('XDignore.symbol.file', '-quiet')
}
Expand Down

0 comments on commit 933e588

Please sign in to comment.