Commit 562faadb authored by Brian Major's avatar Brian Major
Browse files

s1970 - added application targets to GMS client and AC Admin client. Reduced dependencies

parent 60bf4a9f
Loading
Loading
Loading
Loading
+11 −12
Original line number Diff line number Diff line
@@ -3,40 +3,39 @@ plugins {
    id 'maven'
    id 'maven-publish'
    id 'com.jfrog.bintray' version '1.7.1'
    id 'application'
}

repositories {
    jcenter()
    mavenLocal()

    // Only here until cadcUtil is in jcenter.
    maven {
        url  'http://dl.bintray.com/opencadc/software'
    }
}

sourceCompatibility = 1.7

group = 'org.opencadc'

version = '1.0'
version = '1.0.1'

mainClassName = 'ca.nrc.cadc.ac.admin.Main'

dependencies {
    compile 'log4j:log4j:1.2.+'
    compile 'org.jdom:jdom2:2.+'
    compile 'javax.servlet:javax.servlet-api:3.+'
    compile 'xerces:xercesImpl:2.+'
    compile 'com.unboundid:unboundid-ldapsdk:2.3.+'
    compile 'commons-fileupload:commons-fileupload:1.3.+'
    compile 'com.sun.mail:javax.mail:1.+'

    compile 'org.opencadc:cadc-util:1.+'
    compile 'org.opencadc:cadc-log:1.+'
    compile 'org.opencadc:cadc-registry:1.+'
    compile 'org.opencadc:cadc-access-control:1.+'
    compile 'org.opencadc:cadc-access-control-server:1.+'

    testCompile 'junit:junit:4.+'
    testCompile 'org.easymock:easymock:3.+'
    testCompile 'xerces:xercesImpl:2.+'
    testCompile 'org.skyscreamer:jsonassert:1.+'
}

configurations {
  runtime.exclude group: 'org.springframework'
  runtime.exclude group: 'org.restlet.jse'
  runtime.exclude group: 'org.restlet.jee'
}
+0 −3
Original line number Diff line number Diff line
#!/bin/bash

java -Xmx128m -jar ${CADC_ROOT}/lib/cadcAccessControl-Admin.jar $*
+1 −7
Original line number Diff line number Diff line
@@ -8,23 +8,17 @@ plugins {
repositories {
    jcenter()
    mavenLocal()

    // Only here until cadcUtil is in jcenter.
    maven {
        url  'http://dl.bintray.com/opencadc/software'
    }
}

sourceCompatibility = 1.7
group = 'org.opencadc'

version = '1.0'
version = '1.0.1'

dependencies {
    compile 'log4j:log4j:1.2.+'

    compile 'org.opencadc:cadc-util:1.+'
    compile 'org.opencadc:cadc-log:1.+'
    compile 'org.opencadc:cadc-registry:1.+'
    compile 'org.opencadc:cadc-vosi:1.+'
    compile 'org.opencadc:cadc-access-control:1.+'
+1 −8
Original line number Diff line number Diff line
@@ -8,23 +8,17 @@ plugins {
repositories {
    jcenter()
    mavenLocal()

    // Only here until cadcUtil is in jcenter.
    maven {
        url  'http://dl.bintray.com/opencadc/software'
    }
}

sourceCompatibility = 1.7
group = 'org.opencadc'

version = '1.0'
version = '1.0.1'

dependencies {
    compile 'log4j:log4j:1.2.+'
    compile 'org.jdom:jdom2:2.+'
    compile 'org.json:json:20160212'
    compile 'javax.servlet:javax.servlet-api:3.+'
    compile 'xerces:xercesImpl:2.+'
    compile 'com.unboundid:unboundid-ldapsdk:2.3.+'

@@ -39,5 +33,4 @@ dependencies {
    testCompile 'org.easymock:easymock:3.+'
    testCompile 'xerces:xercesImpl:2.+'
    testCompile 'org.skyscreamer:jsonassert:1.+'
    testCompile 'commons-logging:commons-logging:1.+'
}
+9 −6
Original line number Diff line number Diff line
@@ -3,22 +3,21 @@ plugins {
    id 'maven'
    id 'maven-publish'
    id 'com.jfrog.bintray' version '1.7.1'
    id 'application'
}

repositories {
    jcenter()
    mavenLocal()

    // Only here until cadcUtil is in jcenter.
    maven {
        url  'http://dl.bintray.com/opencadc/software'
    }
}

sourceCompatibility = 1.7

group = 'org.opencadc'

version = '1.0'
version = '1.0.1'

mainClassName = 'ca.nrc.cadc.ac.client.GMSClientMain'

dependencies {
    compile 'log4j:log4j:1.2.+'
@@ -33,3 +32,7 @@ dependencies {
    testCompile 'xerces:xercesImpl:2.+'
    testCompile 'org.skyscreamer:jsonassert:1.+'
}

configurations {
  runtime.exclude group: 'org.springframework'
}
Loading