Skip to content

Commit

Permalink
Register plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Virtlink committed Jul 1, 2024
1 parent 011a2be commit 0333686
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions convention-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ plugins {
`kotlin-dsl`
`java-gradle-plugin`
`maven-publish`
signing
}

group = "org.metaborg"
Expand All @@ -17,9 +16,13 @@ dependencies {

gradlePlugin {
plugins {
create("gradle-convention.java") {
id = "org.metaborg.gradle.java-convention"
implementationClass = "org.metaborg.gradle.JavaConventionPlugin"
create("convention.java") {
id = "org.metaborg.convention.java"
implementationClass = "org.metaborg.convention.JavaConventionPlugin"
}
create("convention.maven-publish") {
id = "org.metaborg.convention.maven-publish"
implementationClass = "org.metaborg.convention.MavenPublishConventionPlugin"
}
}
}
Expand All @@ -35,7 +38,3 @@ publishing {
}
}
}

// signing {
// sign(publishing.publications["mavenPlatform"])
// }

0 comments on commit 0333686

Please sign in to comment.