Skip to content

Commit

Permalink
gradle build (1)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnLCaron committed Oct 13, 2012
1 parent 64a9596 commit 3ebdae1
Show file tree
Hide file tree
Showing 9 changed files with 111 additions and 0 deletions.
9 changes: 9 additions & 0 deletions bufr/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
jar {
manifest {
attributes 'Implementation-Title': 'bufr'
}
}

dependencies {
compile project(':cdm')
}
29 changes: 29 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
subprojects {
apply plugin: 'java'

sourceCompatibility = 1.6
version = '4.3.14'

repositories {
maven {
url "https://artifacts.unidata.ucar.edu/content/groups/unidata/"
}
mavenCentral()
}

jar {
manifest {
attributes 'Implementation-Version': version,
'Implementation-Vendor': 'UCAR/Unidata',
'Implementation-Vendor-Id': 'edu.ucar'
}
}

uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
}
22 changes: 22 additions & 0 deletions cdm/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
jar {
manifest {
attributes 'Implementation-Title': 'cdm'
}
}

dependencies {
compile project(':udunits')
compile 'commons-httpclient:commons-httpclient:3.1'
compile 'com.google.protobuf:protobuf-java:2.4.1'
compile 'com.sun.jna:jna:3.0.9'
compile 'com.sleepycat:je:4.0.92'
compile 'joda-time:joda-time:2.0'
compile 'net.jcip:jcip-annotations:1.0'
compile 'net.sf.ehcache:ehcache:1.6.0'
compile 'org.jdom:jdom:1.1'
compile 'org.quartz-scheduler:quartz:2.1.5'
compile 'org.slf4j:slf4j-api:1.6.4'
testCompile group: 'junit', name: 'junit', version: '4.8.2'
testCompile 'org.slf4j:slf4j-jdk14:1.6.4'
runtime 'org.slf4j:jcl-over-slf4j:1.6.4'
}
10 changes: 10 additions & 0 deletions grib/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
jar {
manifest {
attributes 'Implementation-Title': 'grib'
}
}

dependencies {
compile project(':cdm')
compile 'org.jsoup:jsoup:1.6.1'
}
6 changes: 6 additions & 0 deletions opendap/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apply plugin: 'java'

dependencies {
compile project(':cdm')
compile 'javax.servlet:servlet-api:2.5'
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include 'udunits', 'cdm', 'bufr', 'grib', 'opendap', 'visad', 'ui'
5 changes: 5 additions & 0 deletions udunits/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
jar {
manifest {
attributes 'Implementation-Title': 'udunits'
}
}
19 changes: 19 additions & 0 deletions ui/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
jar {
manifest {
attributes 'Implementation-Title': 'toolsUI'
}
}

dependencies {
compile project(':cdm')
compile project(':bufr')
compile project(':grib')
compile project(':opendap')
compile project(':visad')
compile 'com.jgoodies:forms:1.0.7'
compile 'jfree:jcommon:1.0.15'
compile 'jfree:jfreechart:1.0.13'
compile 'lucene:lucene:1.4.3'
compile 'org.bounce:bounce:0.14'
compile 'org.springframework:spring-context:3.1.1.RELEASE'
}
10 changes: 10 additions & 0 deletions visad/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
jar {
manifest {
attributes 'Implementation-Title': 'visadCdm'
}
}

dependencies {
compile project(':cdm')
compile 'edu.wisc.ssec:visad:2.0-20120411'
}

0 comments on commit 3ebdae1

Please sign in to comment.