Skip to content

Commit

Permalink
GH-12 GH-2 Update README
Browse files Browse the repository at this point in the history
GH-2 Publish to Gradle Plugin Portal
  • Loading branch information
riva authored and rivancic committed Sep 14, 2022
1 parent 179ce00 commit a260724
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ asyncapi {
// Force writing of the generated files to given directory even if it is a git repo with unstaged files or not empty
// dir (defaults to false)
forceWrite = false
// Additional parameters that will be passed to templates. Have to be provided as a map.
parameters = [:]
}
```

Expand Down
8 changes: 7 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,14 @@ gradlePlugin {
id = "com.rivancic.asyncapi-gradle-plugin"
displayName = "AsyncAPI Code Generator"
description =
"Plugin that generates code based on AsyncAPI file specification. Wraps original npm AsyncApi generator."
"Plugin that generates code based on AsyncAPI file specification. It wraps original npm AsyncApi generator."
implementationClass = "com.rivancic.asyncapi.gradle.AsyncApiGeneratorPlugin"
}
}
}

pluginBundle {
website = "https://github.com/rivancic/asyncapi-generator-gradle-plugin"
vcsUrl = "https://github.com/rivancic/asyncapi-generator-gradle-plugin"
tags = listOf("asyncapi", "generator")
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Project propertioes ##########
group=com.rivancic
version=1.0-SNAPSHOT
version=0.1.0
################################

0 comments on commit a260724

Please sign in to comment.