Updated dependencies.

This commit is contained in:
Erik C. Thauvin 2016-02-05 12:53:03 -08:00
parent 2c1602f331
commit e1685ba706
8 changed files with 151 additions and 140 deletions

View file

@ -1,9 +1,19 @@
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.coders-kitchen:compileonlyplugin:1.0.0'
}
}
plugins {
id "com.ewerk.gradle.plugins.annotation-processor" version "1.0.2"
id "com.github.ben-manes.versions" version "0.12.0"
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: 'compileOnly'
defaultTasks 'deploy'
@ -51,17 +61,18 @@ dependencies {
compile 'commons-codec:commons-codec:1.10'
compile 'commons-logging:commons-logging:1.2'
compile 'commons-net:commons-net:1.4.1'
compile 'commons-cli:commons-cli:1.2'
compile 'commons-net:commons-net:3.4'
compile 'commons-cli:commons-cli:1.3.1'
compile 'commons-httpclient:commons-httpclient:3.1'
compile 'oro:oro:2.0.8'
compile 'org.jdom:jdom:1.1.3'
compile 'org.jdom:jdom2:2.0.6'
compile 'org.jsoup:jsoup:1.8.3'
compile 'rome:rome:1.0@jar'
compile 'rome:rome-fetcher:1.0@jar'
compile 'org.json:json:20150729'
compile 'org.json:json:20151123'
compile 'org.ostermiller:utils:1.07.00'
compile 'net.sourceforge.jweather:jweather:0.3.0@jar'
@ -70,12 +81,12 @@ dependencies {
compile 'org.twitter4j:twitter4j-core:4.0.4'
compile 'net.sf.delicious-java:delicious:1.14'
compile 'net.thauvin.erik:semver:0.9.1-beta'
compileOnly 'net.thauvin.erik:semver:0.9.5-beta'
}
annotationProcessor {
project.version = getVersion(isRelease)
library 'net.thauvin.erik:semver:0.9.1-beta'
library 'net.thauvin.erik:semver:0.9.5-beta'
processor 'net.thauvin.erik.semver.VersionProcessor'
}