Compare commits

..

No commits in common. "main" and "v1.9" have entirely different histories.
main ... v1.9

5 changed files with 49 additions and 48 deletions

View File

@ -2,25 +2,26 @@ apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdblabs"
version = "1.10"
version = "1.9"
repositories {
mavenLocal()
mavenCentral() }
dependencies {
compile 'org.codehaus.groovy:groovy-all:[2.4.0,)'
compile 'org.pegdown:pegdown:[1.6.0,)'
compile 'org.slf4j:slf4j-api:[1.7.10,)'
compile 'ch.qos.logback:logback-core:[1.1.2,)'
compile 'ch.qos.logback:logback-classic:[1.1.2,)'
compile 'commons-cli:commons-cli:[1.2,)'
compile 'org.apache.commons:commons-lang3:[3.3.2,)'
compile 'com.jdbernard:jdb-util:[4.0,)'
compile 'org.codehaus.groovy:groovy-all:2.3.6'
compile 'org.pegdown:pegdown:1.4.2'
compile 'org.slf4j:slf4j-api:1.7.10'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'commons-cli:commons-cli:1.2'
compile 'org.apache.commons:commons-lang3:3.3.2'
compile 'com.jdbernard:jdb-util:3.4'
compile 'org.pegdown:pegdown:1.4.2'
}
jar {
manifest {
attributes("Main-Class": "com.jdblabs.jlp.JLPMain")
attributes("Main-Class": "com.jdbernard.remindme.DailyAgenda")
}
}

View File

@ -19,7 +19,7 @@ import org.slf4j.LoggerFactory
*/
public class JLPMain {
public static final String VERSION = "1.10"
public static final String VERSION = "1.9"
private static Logger log = LoggerFactory.getLogger(JLPMain.class)