Move library code into lib folder in preparation for consolidating the lib, CLI, and web projects.

This commit is contained in:
2024-08-04 20:42:26 -05:00
parent 66c00e2473
commit e32c6358e9
15 changed files with 0 additions and 0 deletions

28
lib/build.gradle Normal file
View File

@@ -0,0 +1,28 @@
apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdblabs.timestamper"
version = "2.1"
repositories {
mavenLocal()
mavenCentral() }
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.6'
compile 'org.pegdown:pegdown:1.4.2'
compile 'commons-codec:commons-codec:1.10'
compile 'commons-beanutils:commons-beanutils:1.9.2'
compile 'org.codehaus.groovy.modules.http-builder:http-builder:0.6'
compile 'org.apache.httpcomponents:httpclient:4.3.6'
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 'com.jdbernard:jdb-util:3.4'
}
jar {
manifest {
attributes("Main-Class": "com.jdbernard.remindme.DailyAgenda")
}
}