Skip to content

Instantly share code, notes, and snippets.

@mroger
Last active May 12, 2019 00:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mroger/ace6b649e6c103f01554d9e6b2b0fa87 to your computer and use it in GitHub Desktop.
Save mroger/ace6b649e6c103f01554d9e6b2b0fa87 to your computer and use it in GitHub Desktop.
Settings gradle configuring semantic version plugin
pluginManagement {
repositories {
gradlePluginPortal()
}
}
rootProject.name = 'semantic-version'
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'gradle.plugin.net.vivin:gradle-semantic-build-versioning:4.0.0'
}
}
apply plugin: 'net.vivin.gradle-semantic-build-versioning'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment