Skip to content

Commit

Permalink
[NETBEANS-5336] Replace jcenter() to mavenCentral() in Gradle Projects
Browse files Browse the repository at this point in the history
  • Loading branch information
lkishalmi committed Feb 6, 2021
1 parent 3819880 commit e59eca1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion extide/gradle/netbeans-gradle-tooling/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ subprojects {
apply plugin: 'jacoco'

repositories {
jcenter()
mavenCentral()
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import org.gradle.tooling.model.Task
apply plugin: 'groovy'

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
apply plugin: 'java'

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ allprojects {

</#if>
repositories {
jcenter()
mavenCentral()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sourceCompatibility = ${javaVersion}
targetCompatibility = ${javaVersion}
</#if>
repositories {
jcenter()
mavenCentral()
}

<#if dependencies??>
Expand Down

0 comments on commit e59eca1

Please sign in to comment.