Skip to content

Commit

Permalink
Update gradle plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Feb 11, 2022
1 parent 8a6b312 commit d7bbcb4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "io.freefair.git-version" version "6.3.0"
id "io.freefair.lombok" version "6.3.0" apply false
id "io.freefair.maven-publish-java" version "6.3.0" apply false
id "io.freefair.git-version" version "6.4.0"
id "io.freefair.lombok" version "6.4.0" apply false
id "io.freefair.maven-publish-java" version "6.4.0" apply false
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
}

Expand Down Expand Up @@ -33,12 +33,13 @@ allprojects {
}
}

tasks.withType(JavaCompile) {
tasks.withType(JavaCompile).configureEach {
options.compilerArgs += "-parameters"
}

tasks.withType(Javadoc) {
tasks.withType(Javadoc).configureEach {
options.addBooleanOption("Xdoclint:-missing", true)
failOnError = false
}

dependencies {
Expand All @@ -51,7 +52,7 @@ allprojects {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}

tasks.withType(Test) {
tasks.withType(Test).configureEach {
useJUnitPlatform()
}

Expand Down
2 changes: 0 additions & 2 deletions sass-embedded-host/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ configurations {
sassEmbedded
}

javadoc.failOnError = false

repositories {
ivy {
//https://github.com/sass/dart-sass-embedded/releases/download/$dartSassVersion/sass_embedded-$dartSassVersion-linux-ia32.tar.gz
Expand Down
1 change: 0 additions & 1 deletion sass-embedded-protocol/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,5 @@ afterEvaluate {

javadoc {
source tasks.generateProto
failOnError = false
}
}

0 comments on commit d7bbcb4

Please sign in to comment.