Skip to content

Commit bbc81ea

Browse files
authored
Merge pull request #161 from helfper/remove-jcenter
Replace jcenter() by mavenCentral()
2 parents 720a686 + 7586ad8 commit bbc81ea

File tree

22 files changed

+22
-22
lines changed

22 files changed

+22
-22
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
repositories {
8-
jcenter()
8+
mavenCentral()
99
}
1010

1111
group 'org.scoverage'

src/crossScalaVersionTest/resources/projects/scala-multi-module-cross-version/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
allprojects {
66
repositories {
7-
jcenter()
7+
mavenCentral()
88
}
99
}
1010

src/functionalTest/resources/projects/composite-build/proj1/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
repositories {
6-
jcenter()
6+
mavenCentral()
77
}
88

99
description = 'a single-module Scala project taking part in a composite build (1)'

src/functionalTest/resources/projects/composite-build/proj2/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
repositories {
6-
jcenter()
6+
mavenCentral()
77
}
88

99
description = 'a single-module Scala project taking part in a composite build (2)'

src/functionalTest/resources/projects/detect-scala-library/compile/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
repositories {
6-
jcenter()
6+
mavenCentral()
77
}
88

99
description = 'defines scala library using the "implementation" configuration'

src/functionalTest/resources/projects/detect-scala-library/compileOnly/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
repositories {
6-
jcenter()
6+
mavenCentral()
77
}
88

99
description = 'defines scala library using the "compileOnly" configuration'

src/functionalTest/resources/projects/detect-scala-library/dependency-management/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
repositories {
7-
jcenter()
7+
mavenCentral()
88
}
99

1010
description = 'defines scala library using the "implementation" configuration and the dependency-management plugin'

src/functionalTest/resources/projects/detect-scala-library/gradle-consistent-versions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
repositories {
7-
jcenter()
7+
mavenCentral()
88
}
99

1010
description = 'defines scala library using the "implementation" configuration and the gradle-consistent-versions plugin'

src/functionalTest/resources/projects/detect-scala-library/implementation/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
repositories {
6-
jcenter()
6+
mavenCentral()
77
}
88

99
description = 'defines scala library using the "implementation" configuration'

src/functionalTest/resources/projects/multi-module-plugin-not-configured-for-scala/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = 'a multi-module Scala and Java project that defines scoverage only
66

77
allprojects {
88
repositories {
9-
jcenter()
9+
mavenCentral()
1010
}
1111
}
1212

0 commit comments

Comments
 (0)