Skip to content

Commit 2538c20

Browse files
committed
chore(gradle-plugin): adjust gradle plugin information
1 parent 61290db commit 2538c20

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

gradle-plugin/build.gradle.kts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
id("java-gradle-plugin")
44
id("org.gradle.kotlin.kotlin-dsl")
55
id("maven-publish")
6+
id("com.gradle.plugin-publish") version "0.10.1"
67
}
78

89
dependencies {
@@ -17,17 +18,15 @@ gradlePlugin {
1718
plugins {
1819
create("graphql-kotlin-toolkit-codegen") {
1920
id = "org.auritylab.graphql-kotlin-toolkit.codegen"
21+
displayName = "GraphQL Kotlin Toolkit: Codegen"
22+
description = "GraphQL code generator for Kotlin"
2023
implementationClass = "com.auritylab.graphql.kotlin.toolkit.gradle.CodegenGradlePlugin"
2124
}
2225
}
2326
}
2427

25-
publishing {
26-
publications {
27-
create<MavenPublication>("maven") {
28-
artifactId = "gradle-plugin"
29-
30-
from(components["java"])
31-
}
32-
}
28+
pluginBundle {
29+
website = "https://github.com/AurityLab/graphql-kotlin-toolkit"
30+
vcsUrl = "https://github.com/AurityLab/graphql-kotlin-toolkit"
31+
tags = listOf("graphql", "kotlin", "codegen", "codegeneration", "graphql-codegen")
3332
}

0 commit comments

Comments
 (0)