Skip to content

Commit

Permalink
add mavenCentral (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
shashank11p authored Dec 4, 2023
1 parent ebff47b commit 9bbef98
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,23 @@ plugins {
id("org.owasp.dependencycheck") version "7.1.1"
}

buildscript {
repositories {
mavenCentral()
}
}

allprojects {
apply(plugin="java-library")
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

repositories {
mavenCentral()
}

tasks.compileJava {
options.compilerArgs.add("-Werror")
}
Expand Down

0 comments on commit 9bbef98

Please sign in to comment.