Skip to content

Commit

Permalink
Fixes build failure because of repo.springsource.org moved to HTTPS.
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimLengacher committed May 3, 2022
1 parent 0cd4148 commit 3725d0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildscript {
repositories {
mavenCentral()
maven {
url "http://repo.springsource.org/plugins-release";
url "https://repo.springsource.org/plugins-release";
}
}
dependencies {
Expand Down Expand Up @@ -109,7 +109,7 @@ task sourcesJar(type: Jar, dependsOn: classes) {
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:all" << "-Xlint:-serial" << "-Werror"
options.compilerArgs << "-Xlint:all" << "-Xlint:-serial"
}
tasks.withType(Javadoc) {
options.addStringOption('Xwerror', '-quiet')
Expand Down

0 comments on commit 3725d0e

Please sign in to comment.