Skip to content

Commit a563f4b

Browse files
committed
Update gradle plugin for publishing
1 parent dc43746 commit a563f4b

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

inject-gradle-plugin/build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ repositories {
1414
}
1515

1616
dependencies {
17-
implementation 'io.avaje:avaje-inject:9.0-RC3'
17+
implementation 'io.avaje:avaje-inject:9.0'
1818
implementation gradleApi()
19-
//implementation localGroovy()
2019

2120
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
2221
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
@@ -27,10 +26,6 @@ test {
2726
}
2827

2928
gradlePlugin {
30-
// website = 'https://avaje.io/inject/gradle'
31-
// vcsUrl = 'https://github.com/avaje/avaje-inject'
32-
// description = 'Avaje-Inject plugin'
33-
// tags = ['Dependency Injection']
3429
plugins {
3530
avajeInject {
3631
id = 'io.avaje.inject'
@@ -40,3 +35,11 @@ gradlePlugin {
4035
}
4136
}
4237

38+
pluginBundle {
39+
website = 'https://avaje.io/inject/gradle'
40+
vcsUrl = 'https://github.com/avaje/avaje-inject'
41+
description = 'Avaje-Inject plugin'
42+
tags = ['Dependency Injection']
43+
}
44+
45+

0 commit comments

Comments
 (0)