Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
atomfrede committed Nov 6, 2017
1 parent 6002ff6 commit 989085c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
29 changes: 25 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
buildscript {
repositories {
jcenter()
}

dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
}
}

plugins {
id 'pl.allegro.tech.build.axion-release' version '1.8.1'
}

scmVersion {
tag {
prefix = ''
}
}
group 'com.github.atomfrede'
version '1.4.0'
//version '1.4.0'

apply plugin: 'java'

apply plugin: 'com.github.ben-manes.versions'
apply from: 'gradle/codeQuality.gradle'

sourceCompatibility = 1.8
Expand All @@ -12,16 +31,18 @@ repositories {
}

dependencies {
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'org.apache.xmlgraphics', name: 'batik-transcoder', version: '1.9.1'
compile group: 'org.apache.xmlgraphics', name: 'xmlgraphics-commons', version: '2.2'
compile group: 'org.apache.xmlgraphics', name: 'batik-codec', version: '1.9.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.8.0'
}

project.version = scmVersion.version

check.dependsOn jacocoTestReport

task wrapper(type: Wrapper) {
gradleVersion = '4.2.1'
gradleVersion = '4.3'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-bin.zip

0 comments on commit 989085c

Please sign in to comment.