Skip to content

Commit 5408f0b

Browse files
committed
update readme to markdown
1 parent e5910a0 commit 5408f0b

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

README.adoc

Lines changed: 0 additions & 14 deletions
This file was deleted.

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Semantic Version Gradle Plugin
2+
3+
* [docs](https://github.com/countableSet/semantic-version-plugin/tree/main/docs)
4+
* [gradle plugin portal](https://plugins.gradle.org/plugin/dev.poolside.gradle.semantic-version)
5+
6+
Based on a given `major.minor` version, plugin determines patch version based on what is already maven repository by auto incrementing it to produce the next version number. Major or minor versions must be manually changed.
7+
8+
```groovy
9+
plugins {
10+
id 'maven-publish'
11+
id 'dev.poolside.gradle.semantic-version' version '<version>'
12+
}
13+
```

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gradlePlugin {
3131
displayName = "Poolside Semantic Version Plugin"
3232
description = "Based on a given major.minor version, plugin determines patch version based on what is already " +
3333
"maven repository by auto incrementing it to produce the next version number. Major or minor versions " +
34-
"must be manually changed"
34+
"must be manually changed."
3535
tags.set(listOf("semantic version", "maven", "publish", "auto increment"))
3636
}
3737
}

0 commit comments

Comments
 (0)