File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed
Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 11// This file contains some logic for calculation of the version number
2- def manualBaseVersion = " 0.1"
2+ def manualBaseVersion = " 0.1.1 "
33
44def gitTags = git. tag. list()
55def currentCommitTag = gitTags. find { it. commit == git. head() }
Original file line number Diff line number Diff line change @@ -25,12 +25,13 @@ buildscript {
2525 jcenter()
2626 }
2727 dependencies {
28- classpath ' org.ajoberstar:grgit:1 .1.0'
28+ classpath ' org.ajoberstar:grgit:2 .1.0'
2929 classpath ' com.bmuschko:gradle-nexus-plugin:2.3.1'
30+ classpath ' com.github.ben-manes:gradle-versions-plugin:0.17.0'
3031 }
3132}
3233ext {
33- git = org.ajoberstar.grgit.Grgit . open(file( ' . ' ) )
34+ git = org.ajoberstar.grgit.Grgit . open()
3435}
3536
3637group ' de.bitinsomnia'
@@ -42,13 +43,14 @@ apply from: 'build-versioning.gradle'
4243apply plugin : ' java'
4344apply plugin : ' idea'
4445apply plugin : ' com.bmuschko.nexus'
46+ apply plugin : ' com.github.ben-manes.versions'
4547apply from : " dependencies.gradle"
4648
4749repositories {
48- mavenLocal();
49- jcenter();
50+ mavenLocal()
51+ jcenter()
5052 maven {
51- url " http://milton.io/maven "
53+ url " http://dl.bintray.com/milton/Milton "
5254 }
5355}
5456
Original file line number Diff line number Diff line change 1717 */
1818
1919ext {
20- junit = ' junit:junit:4.10 '
20+ junit = ' junit:junit:4.12 '
2121
22- commons_lang = ' org.apache.commons:commons-lang3:3.4 '
22+ commons_lang = ' org.apache.commons:commons-lang3:3.7 '
2323
24- slf4j_api = ' org.slf4j:slf4j-api:1.7.15 '
25- logback = ' ch.qos.logback:logback-classic:1.1 .3'
24+ slf4j_api = ' org.slf4j:slf4j-api:1.7.25 '
25+ logback = ' ch.qos.logback:logback-classic:1.2 .3'
2626
27- jetty_version = ' 9.3.7.v20160115 '
27+ jetty_version = ' 9.4.8.v20171121 '
2828 jetty_server = ' org.eclipse.jetty:jetty-server:' + jetty_version
2929 jetty_servlet = ' org.eclipse.jetty:jetty-servlet:' + jetty_version
3030 jetty_servlets = ' org.eclipse.jetty:jetty-servlets:' + jetty_version
3131
32- milton_version = ' 2.7.1.3 '
32+ milton_version = ' 2.7.2.4 '
3333 milton_api = ' io.milton:milton-api:' + milton_version
3434 milton_server = ' io.milton:milton-server-ce:' + milton_version
3535
36- jcommander = ' com.beust:jcommander:1.48 '
36+ jcommander = ' com.beust:jcommander:1.72 '
3737}
You can’t perform that action at this time.
0 commit comments