Skip to content

Commit d9183b4

Browse files
committed
Updated dependencies and their versions
1 parent b4cbced commit d9183b4

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

build-versioning.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file contains some logic for calculation of the version number
2-
def manualBaseVersion = "0.1"
2+
def manualBaseVersion = "0.1.1"
33

44
def gitTags = git.tag.list()
55
def currentCommitTag = gitTags.find { it.commit == git.head() }

build.gradle

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}
3233
ext {
33-
git = org.ajoberstar.grgit.Grgit.open(file('.'))
34+
git = org.ajoberstar.grgit.Grgit.open()
3435
}
3536

3637
group 'de.bitinsomnia'
@@ -42,13 +43,14 @@ apply from: 'build-versioning.gradle'
4243
apply plugin: 'java'
4344
apply plugin: 'idea'
4445
apply plugin: 'com.bmuschko.nexus'
46+
apply plugin: 'com.github.ben-manes.versions'
4547
apply from: "dependencies.gradle"
4648

4749
repositories {
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

dependencies.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@
1717
*/
1818

1919
ext {
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
}

0 commit comments

Comments
 (0)