Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Jan 7, 2024
1 parent 278d6de commit f992028
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,14 @@ kotlin {
}
}

gradlePlugin {
website = "https://github.com/Incendo"
vcsUrl = "https://github.com/Incendo/cloud-build-logic"
}

gradlePlugin.plugins.register("base") {
id = "org.incendo.cloud-build-logic"
displayName = "Cloud Build Logic"
implementationClass = "org.incendo.cloudbuildlogic.BasePlugin"
}

Expand All @@ -45,6 +51,7 @@ fun plugin(name: String, implClass: String) {
val prefixedId = "org.incendo.cloud-build-logic.$name"
gradlePlugin.plugins.register(name) {
id = prefixedId
displayName = "Cloud Build Logic ($name)"
implementationClass = implClass
description = project.description
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.incendo
description=Shared build logic for cloud projects
version=0.0.1-SNAPSHOT
version=0.0.1

org.gradle.parallel=true
org.gradle.caching=true

0 comments on commit f992028

Please sign in to comment.