Skip to content

Commit 36275af

Browse files
committed
Clean up plugins block in settings
1 parent f0e2c52 commit 36275af

3 files changed

Lines changed: 25 additions & 23 deletions

File tree

build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
apply plugin: 'dev.equo.ide'
1+
plugins {
2+
alias(libs.plugins.equo.ide)
3+
alias(libs.plugins.test.logger) apply false
4+
alias(libs.plugins.spotless.changelog) apply false
5+
alias(libs.plugins.plugin.publish) apply false
6+
alias(libs.plugins.version.compatibility) apply false
7+
alias(libs.plugins.nexus.publish) apply false
8+
alias(libs.plugins.errorprone) apply false
9+
alias(libs.plugins.rewrite) apply false
10+
alias(libs.plugins.maven.plugin.development) apply false
11+
alias(libs.plugins.p2deps) apply false
12+
}
213

314
equoIde {
415
branding().title('Spotless').icon(file('_images/spotless_logo.png'))

gradle/libs.versions.toml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,15 @@ rewrite-recipe-third-party = "org.openrewrite.recipe:rewrite-third-party:0.36.0"
6464
errorprone-core = "com.google.errorprone:error_prone_core:2.42.0"
6565

6666
[plugins]
67-
test-logger = { id = "com.adarshr.test-logger", version = "4.0.0" }
68-
spotless = { id = "com.diffplug.spotless", version = "8.3.0" }
69-
spotless-changelog = { id = "com.diffplug.spotless-changelog", version = "3.1.2" }
70-
spotbugs = { id = "com.github.spotbugs", version = "6.4.8" }
71-
develocity = { id = "com.gradle.develocity", version = "4.3.2" }
72-
plugin-publish = { id = "com.gradle.plugin-publish", version = "2.1.0" }
73-
equo-ide = { id = "dev.equo.ide", version = "1.7.8" }
74-
version-compatibility = { id = "io.github.davidburstrom.version-compatibility", version = "0.5.0" }
75-
p2deps = { id = "dev.equo.p2deps", version = "1.7.8" }
76-
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0" }
77-
errorprone = { id = "net.ltgt.errorprone", version = "5.1.0" }
78-
rewrite = { id = "org.openrewrite.rewrite", version = "7.25.0" }
79-
maven-plugin-development = { id = "org.gradlex.maven-plugin-development", version = "1.0.3" }
67+
test-logger = "com.adarshr.test-logger:4.0.0"
68+
spotless = "com.diffplug.spotless:8.3.0"
69+
spotless-changelog = "com.diffplug.spotless-changelog:3.1.2"
70+
spotbugs = "com.github.spotbugs:6.4.8"
71+
plugin-publish = "com.gradle.plugin-publish:2.1.0"
72+
equo-ide = "dev.equo.ide:1.7.8"
73+
version-compatibility = "io.github.davidburstrom.version-compatibility:0.5.0"
74+
p2deps = "dev.equo.p2deps:1.7.8"
75+
nexus-publish = "io.github.gradle-nexus.publish-plugin:2.0.0"
76+
errorprone = "net.ltgt.errorprone:5.1.0"
77+
rewrite = "org.openrewrite.rewrite:7.25.0"
78+
maven-plugin-development = "org.gradlex.maven-plugin-development:1.0.3"

settings.gradle

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,9 @@ pluginManagement {
88
}
99

1010
plugins {
11-
id 'com.adarshr.test-logger' version '4.0.0' apply false // https://github.com/radarsh/gradle-test-logger-plugin/blob/develop/CHANGELOG.md
1211
id 'com.diffplug.spotless' version '8.3.0' apply false
13-
id 'com.diffplug.spotless-changelog' version '3.1.2' apply false // https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
1412
id 'com.github.spotbugs' version '6.4.8' apply false // https://github.com/spotbugs/spotbugs-gradle-plugin/releases
15-
id 'com.gradle.develocity' version '4.3.2' // https://plugins.gradle.org/plugin/com.gradle.develocity
16-
id 'com.gradle.plugin-publish' version '2.1.0' apply false // https://plugins.gradle.org/plugin/com.gradle.plugin-publish
17-
id 'dev.equo.ide' version '1.7.8' apply false // https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
18-
id 'io.github.davidburstrom.version-compatibility' version '0.5.0' apply false // https://github.com/davidburstrom/version-compatibility-gradle-plugin/tags
19-
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' apply false // https://github.com/gradle-nexus/publish-plugin/releases
20-
id 'net.ltgt.errorprone' version '5.1.0' apply false
21-
id 'org.openrewrite.rewrite' version '7.25.0' apply false
13+
id 'com.gradle.develocity' version '4.3.2'
2214
}
2315

2416
dependencyResolutionManagement {

0 commit comments

Comments
 (0)