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

Diff for: build.gradle

+1-1
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'

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

+1-1
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

Diff for: src/functionalTest/resources/projects/composite-build/proj1/build.gradle

+1-1
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)'

Diff for: src/functionalTest/resources/projects/composite-build/proj2/build.gradle

+1-1
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)'

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

+1-1
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'

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

+1-1
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'

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

+1-1
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'

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

+1-1
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'

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

+1-1
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'

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

+1-1
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

Diff for: src/functionalTest/resources/projects/multiple-check-tasks/multiple-checks/build.gradle

+1-1
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 that has multiple check configurations'

Diff for: src/functionalTest/resources/projects/multiple-check-tasks/no-check/build.gradle

+1-1
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 with no check configured'

Diff for: src/functionalTest/resources/projects/multiple-check-tasks/old-and-new-syntax/build.gradle

+1-1
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 that has multiple check configurations - some new syntax, some old'

Diff for: src/functionalTest/resources/projects/multiple-check-tasks/single-check-new-syntax/build.gradle

+1-1
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 that has a single check configurations (with the new syntax)'

Diff for: src/functionalTest/resources/projects/multiple-check-tasks/single-check-old-syntax/build.gradle

+1-1
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 that has a single check configurations (with the old syntax)'

Diff for: src/functionalTest/resources/projects/scala-java-multi-module/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = 'a multi-module Scala and Java project that builds successfully wi
66

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

Diff for: src/functionalTest/resources/projects/scala-multi-module-multiple-test-tasks/build.gradle

+1-1
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

Diff for: src/functionalTest/resources/projects/scala-multi-module-with-partial-scoverage-use/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = 'a multi-module Scala project that builds successfully and has mod
66

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

1212
apply plugin: 'java'

Diff for: src/functionalTest/resources/projects/scala-multi-module/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = 'a multi-module Scala project that builds successfully with 100% c
66

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

1212
if (p.name != 'dependencies') {

Diff for: src/functionalTest/resources/projects/scala-single-module-dependency-manager/build.gradle

+1-1
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 = 'a single-module Scala project with dependency manager that builds successfully with 100% coverage'

Diff for: src/functionalTest/resources/projects/scala-single-module-multiple-test-tasks/build.gradle

+1-1
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 = 'a single-module Scala project with dependency manager that builds successfully with 100% coverage'

Diff for: src/functionalTest/resources/projects/scala-single-module/build.gradle

+1-1
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 that builds successfully with 50% coverage'

0 commit comments

Comments
 (0)