Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace jcenter() by mavenCentral() #161

Merged
merged 1 commit into from
Aug 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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