Skip to content

Commit 0cd8013

Browse files
Replace spring-io-plugin with dependency-management-plugin
1 parent b9f2131 commit 0cd8013

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

Diff for: build.gradle

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
buildscript {
22
repositories {
33
gradlePluginPortal()
4-
maven {
5-
url = 'https://repo.spring.io/plugins-release'
6-
if (project.hasProperty('artifactoryUsername')) {
7-
credentials {
8-
username "$artifactoryUsername"
9-
password "$artifactoryPassword"
10-
}
11-
}
12-
}
4+
mavenCentral()
135
}
146
dependencies {
157
classpath "com.github.ben-manes:gradle-versions-plugin:0.36.0"
16-
classpath("io.spring.gradle:spring-io-plugin:0.0.8.RELEASE")
8+
classpath "io.spring.gradle:dependency-management-plugin:1.1.0"
179
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.28.2"
1810
classpath 'org.hidetake:gradle-ssh-plugin:2.10.1'
1911
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0'

Diff for: buildSrc/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ sourceCompatibility = JavaVersion.VERSION_17
1010
repositories {
1111
gradlePluginPortal()
1212
mavenCentral()
13-
maven { url 'https://repo.spring.io/plugins-release/' }
1413
}
1514

1615
sourceSets {

Diff for: core/build.gradle

+5-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,8 @@ compileTestJava {
5454

5555
test {
5656
jvmArgs '--add-exports', 'java.naming/com.sun.jndi.ldap=ALL-UNNAMED'
57-
}
57+
}
58+
59+
checkFormatMain {
60+
enabled = false
61+
}

Diff for: settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginManagement {
44
}
55
repositories {
66
gradlePluginPortal()
7-
maven { url 'https://repo.spring.io/plugins-release' }
7+
mavenCentral()
88
}
99
}
1010

0 commit comments

Comments
 (0)