File tree Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,10 @@ plugins {
2
2
`kotlin- dsl`
3
3
}
4
4
5
- repositories {
6
- mavenCentral()
7
- gradlePluginPortal()
8
- }
9
-
10
5
dependencies {
11
- implementation(" com.gradle.publish:plugin-publish-plugin:1.3.0 " )
12
- implementation(" com.vanniktech:gradle-maven-publish-plugin:0.30.0 " )
13
- implementation(" org.jetbrains.dokka:dokka-gradle-plugin:2.0.0 " )
14
- implementation(" org.ajoberstar.git-publish:gradle-git-publish:5.1.0 " )
15
- implementation(" com.github.node-gradle:gradle-node-plugin:7.1.0 " )
6
+ implementation(libs.pluginPublish )
7
+ implementation(libs.mavenPublish )
8
+ implementation(libs.gitPublish )
9
+ implementation(libs.node )
10
+ implementation(libs.jetbrains.dokka )
16
11
}
Original file line number Diff line number Diff line change
1
+ dependencyResolutionManagement {
2
+ versionCatalogs {
3
+ create(" libs" ) {
4
+ from(files(" ../gradle/libs.versions.toml" ))
5
+ }
6
+ }
7
+
8
+ repositories {
9
+ mavenCentral()
10
+ gradlePluginPortal()
11
+ }
12
+ }
Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ plexus-utils = "org.codehaus.plexus:plexus-utils:4.0.2"
10
10
plexus-xml = " org.codehaus.plexus:plexus-xml:4.0.4"
11
11
xmlunit = " org.xmlunit:xmlunit-legacy:2.10.0"
12
12
13
+ pluginPublish = " com.gradle.publish:plugin-publish-plugin:1.3.0"
14
+ mavenPublish = " com.vanniktech:gradle-maven-publish-plugin:0.30.0"
15
+ gitPublish = " org.ajoberstar.git-publish:gradle-git-publish:5.1.0"
16
+ jetbrains-dokka = " org.jetbrains.dokka:dokka-gradle-plugin:2.0.0"
17
+ node = " com.github.node-gradle:gradle-node-plugin:7.1.0"
18
+
13
19
androidx-gradlePluginLints = " androidx.lint:lint-gradle:1.0.0-alpha03"
14
20
assertk-lint = " com.jzbrooks:assertk-lint:1.3.0"
15
21
# Dummy to get renovate updates, the version is used in rootProject build.gradle with spotless.
You can’t perform that action at this time.
0 commit comments