Skip to content

Commit

Permalink
Align Gradle dependencies with Maven ones (#378)
Browse files Browse the repository at this point in the history
Define the same set (and scopes) of dependencies for Gradle builds as we
have now in Maven's `pom.xml`.
  • Loading branch information
mpaluchowski authored and ryaneberly committed Jul 30, 2017
1 parent 8e8998b commit 0a95847
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,9 @@ repositories {
maven { url "http://cfmlprojects.org/artifacts" }
}
dependencies {
compile group: 'com.github.cfparser', name: 'cfparser', version:'2.4.9'
compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.4.9'
compile group: 'com.github.cfparser', name: 'cfml.dictionary', version:'2.4.9'
compile group: 'junit', name: 'junit', version:'4.12'
compile group: 'org.jdom', name: 'jdom', version:'1.1.3'
compile group: 'org.antlr', name: 'antlr4-runtime', version:'4.7'
compile group: 'org.antlr', name: 'stringtemplate', version:'4.0.2'
compile group: 'org.antlr', name: 'antlr4', version:'4.6'
compile group: 'net.htmlparser.jericho', name: 'jericho-html', version:'3.4'
compile group: 'log4j', name: 'log4j', version:'1.2.17'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.5'
compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.4.10'
compile group: 'commons-cli', name: 'commons-cli', version:'1.2'
compile group: 'ro.fortsoft.pf4j', name: 'pf4j', version:'0.6'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.5'
compile group: 'ant', name: 'ant', version:'1.7.0'
compile group: 'com.sun.xml.bind', name: 'jaxb-impl', version:'2.1.8'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version:'2.8.6'
Expand All @@ -66,10 +55,8 @@ dependencies {
}
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.5'

runtime group: 'commons-logging', name: 'commons-logging-api', version:'1.1'
runtime group: 'org.slf4j', name: 'slf4j-api', version:'1.7.5'
runtime group: 'org.javolution', name: 'javolution', version:'5.2.6'

testCompile group: 'junit', name: 'junit', version:'4.12'
}

test {
Expand Down Expand Up @@ -105,8 +92,7 @@ task fatJar(type: Jar) {
artifacts {
archives fatJar
}

task gitChangelogTask(type: se.bjurr.gitchangelog.plugin.gradle.GitChangelogTask) {
file = new File("CHANGELOG.md");
templateContent = file('src/main/resources/changelog.mustache').getText('UTF-8');
}
}

0 comments on commit 0a95847

Please sign in to comment.