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

DIAC-556 remove jcenter() #2302

Merged
merged 4 commits into from
Aug 13, 2024
Merged
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
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:3.6.22")
Expand Down Expand Up @@ -33,7 +33,7 @@ apply plugin: 'project-report'
apply plugin: 'idea'

def versions = [
reformLogging : '5.1.7',
reformLogging : '6.0.1',
serenity : '3.6.22',
junit : '5.8.2',
junitPlatform : '1.7.2',
Expand Down Expand Up @@ -262,7 +262,6 @@ project.tasks['sonarqube'].group = "Verification"

repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
Expand Down Expand Up @@ -363,12 +362,13 @@ dependencies {

implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.13'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.13'
implementation group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '8.0'

implementation group: 'org.javamoney.moneta', name: 'moneta-core', version: '1.4.2'

implementation group: 'uk.gov.hmcts.reform', name: 'logging', version: versions.reformLogging
implementation group: 'uk.gov.hmcts.reform', name: 'logging-appinsights', version: versions.reformLogging
implementation(group: 'uk.gov.hmcts.reform', name: 'service-auth-provider-client', version: '4.0.0') {
implementation group: 'com.github.hmcts.java-logging', name: 'logging', version: versions.reformLogging
implementation group: 'com.github.hmcts.java-logging', name: 'logging-appinsights', version: versions.reformLogging
implementation(group: 'com.github.hmcts', name: 'service-auth-provider-java-client', version: '4.0.2') {
exclude group: "org.bouncycastle", module: "bcprov-jdk15on"
}
implementation(group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign', version: '3.1.8') {
Expand Down Expand Up @@ -428,7 +428,7 @@ dependencies {
exclude group: 'org.apache.commons', module: 'commons-lang3'
}

testImplementation group: 'uk.gov.hmcts.reform', name: 'document-management-client', version: '7.0.0'
testImplementation group: 'com.github.hmcts', name: 'document-management-client', version: '7.0.1'
testImplementation group: 'com.github.hmcts', name: 'ccd-case-document-am-client', version: '1.7.3'
testImplementation group: 'org.apache.httpcomponents', name: 'fluent-hc', version: '4.5.14'

Expand Down
Loading