diff --git a/README.md b/README.md index 9bf1263..3b081b9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Inside your top-level Gradle file add the Inspector Graphetto plugin: **In a `build.gradle` file (Groovy):** ```groovy plugins { - id 'at.droiddave.graphetto' version '1.0.0-SNAPSHOT' + id 'at.droiddave.graphetto' version '0.0.1' } ``` @@ -17,7 +17,7 @@ plugins { ```kotlin plugins { - id("at.droiddave.graphetto") version "1.0.0-SNAPSHOT" + id("at.droiddave.graphetto") version "0.0.1" } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 88ab8ed..dc5fdd9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,10 +6,11 @@ plugins { // the builds (not exact though): https://youtrack.jetbrains.com/issue/KT-34527 kotlin("jvm") version "1.3.50" id("java-gradle-plugin") + id("com.gradle.plugin-publish") version "0.11.0" } group = "at.droiddave.graphetto" -version = "1.0-SNAPSHOT" +version = "0.0.1" repositories { mavenCentral() @@ -45,4 +46,17 @@ gradlePlugin { implementationClass = "at.droiddave.graphetto.GraphettoPlugin" } } +} + +pluginBundle { + website = "https://github.com/davidschreiber/graphetto" + vcsUrl = "https://github.com/davidschreiber/graphetto" + (plugins) { + "graphetto" { + displayName = "Inspector Graphetto" + description = "Inspector Graphetto is a Gradle build plugin to inspect and visualize the task execution " + + "graph of your build." + tags = listOf("graphetto", "gradle-task", "task-graph", "tasks", "graph", "graphviz", "dot") + } + } } \ No newline at end of file