Skip to content

Commit 69922ea

Browse files
committed
Manage build version via plugin
1 parent 66ed036 commit 69922ea

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ plugins {
2626
id "io.codearte.nexus-staging" version "0.6.1"
2727
}
2828

29-
version = '1.1.1'
3029
group = 'com.arakelian'
3130

3231
// common gradle code shared between projects

semantic-build-versioning.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
startingVersion = '1.0.0'

settings.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1+
buildscript {
2+
repositories {
3+
maven {
4+
url 'https://plugins.gradle.org/m2/'
5+
}
6+
}
7+
dependencies {
8+
classpath 'gradle.plugin.net.vivin:gradle-semantic-build-versioning:3.0.4'
9+
}
10+
}
11+
12+
apply plugin: 'net.vivin.gradle-semantic-build-versioning'
13+
114
rootProject.name = 'docker-junit-rule'
15+

0 commit comments

Comments
 (0)