Skip to content

Commit 3725d0e

Browse files
Fixes build failure because of repo.springsource.org moved to HTTPS.
1 parent 0cd4148 commit 3725d0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
repositories {
2222
mavenCentral()
2323
maven {
24-
url "http://repo.springsource.org/plugins-release";
24+
url "https://repo.springsource.org/plugins-release";
2525
}
2626
}
2727
dependencies {
@@ -109,7 +109,7 @@ task sourcesJar(type: Jar, dependsOn: classes) {
109109
allprojects {
110110
gradle.projectsEvaluated {
111111
tasks.withType(JavaCompile) {
112-
options.compilerArgs << "-Xlint:all" << "-Xlint:-serial" << "-Werror"
112+
options.compilerArgs << "-Xlint:all" << "-Xlint:-serial"
113113
}
114114
tasks.withType(Javadoc) {
115115
options.addStringOption('Xwerror', '-quiet')

0 commit comments

Comments
 (0)