Skip to content

Commit

Permalink
Replace kewt-versioning plugin with axion-release
Browse files Browse the repository at this point in the history
  • Loading branch information
szysas committed Aug 11, 2023
1 parent a98c39c commit aba6f1a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ Development
- `./gradlew publishToMavenLocal` publish to local maven
- `./gradlew dependencyUpdates` determine which dependencies have updates
- `./gradlew useLatestVersions` update dependencies to the latest available versions
- `./gradlew release` create release tag
- `./gradlew wrapper --gradle-version VERSION` Upgrading the Wrapper version

Contributions
Expand Down
13 changes: 7 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.github.spotbugs.snom.Effort
plugins {
id("java")
id("maven-publish")
id("com.github.mfarsikov.kewt-versioning") version "1.0.0"
id("pl.allegro.tech.build.axion-release") version "1.15.3"
id("se.patrikerdes.use-latest-versions") version "0.2.18"
id("com.github.ben-manes.versions") version "0.47.0"
id("pmd")
Expand All @@ -14,9 +14,13 @@ plugins {
id("com.adarshr.test-logger") version "3.2.0"
}

scmVersion {
versionIncrementer("incrementMinor")
}

allprojects {
apply {
plugin("com.github.mfarsikov.kewt-versioning")
plugin("pl.allegro.tech.build.axion-release")
plugin("se.patrikerdes.use-latest-versions")
plugin("com.github.ben-manes.versions")
}
Expand All @@ -25,10 +29,7 @@ allprojects {
mavenCentral()
}

kewtVersioning.configuration {
separator = ""
}
version = kewtVersioning.version
version = scmVersion.version
group = "io.github.open-coap"

tasks.withType<DependencyUpdatesTask> {
Expand Down

0 comments on commit aba6f1a

Please sign in to comment.