Skip to content

Commit

Permalink
Merge pull request #161 from helfper/remove-jcenter
Browse files Browse the repository at this point in the history
Replace jcenter() by mavenCentral()
  • Loading branch information
maiflai authored Aug 9, 2021
2 parents 720a686 + 7586ad8 commit bbc81ea
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

group 'org.scoverage'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
repositories {
jcenter()
mavenCentral()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project taking part in a composite build (1)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project taking part in a composite build (2)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'defines scala library using the "implementation" configuration'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'defines scala library using the "compileOnly" configuration'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'defines scala library using the "implementation" configuration and the dependency-management plugin'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'defines scala library using the "implementation" configuration and the gradle-consistent-versions plugin'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'defines scala library using the "implementation" configuration'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = 'a multi-module Scala and Java project that defines scoverage only

allprojects {
repositories {
jcenter()
mavenCentral()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project that has multiple check configurations'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project with no check configured'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project that has multiple check configurations - some new syntax, some old'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project that has a single check configurations (with the new syntax)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project that has a single check configurations (with the old syntax)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = 'a multi-module Scala and Java project that builds successfully wi

allprojects {
repositories {
jcenter()
mavenCentral()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
repositories {
jcenter()
mavenCentral()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = 'a multi-module Scala project that builds successfully and has mod

allprojects { p ->
repositories {
jcenter()
mavenCentral()
}

apply plugin: 'java'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = 'a multi-module Scala project that builds successfully with 100% c

allprojects { p ->
repositories {
jcenter()
mavenCentral()
}

if (p.name != 'dependencies') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project with dependency manager that builds successfully with 100% coverage'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project with dependency manager that builds successfully with 100% coverage'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

description = 'a single-module Scala project that builds successfully with 50% coverage'
Expand Down

0 comments on commit bbc81ea

Please sign in to comment.