Skip to content

Commit 9bbef98

Browse files
authored
add mavenCentral (#394)
1 parent ebff47b commit 9bbef98

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,23 @@ plugins {
99
id("org.owasp.dependencycheck") version "7.1.1"
1010
}
1111

12+
buildscript {
13+
repositories {
14+
mavenCentral()
15+
}
16+
}
17+
1218
allprojects {
1319
apply(plugin="java-library")
1420
java {
1521
sourceCompatibility = JavaVersion.VERSION_1_8
1622
targetCompatibility = JavaVersion.VERSION_1_8
1723
}
1824

25+
repositories {
26+
mavenCentral()
27+
}
28+
1929
tasks.compileJava {
2030
options.compilerArgs.add("-Werror")
2131
}

0 commit comments

Comments
 (0)