Skip to content
Snippets Groups Projects
build.gradle 1.58 KiB
Newer Older
  • Learn to ignore specific revisions
  • apply from: '../build/javaproject.gradle'
    
                'springframework:spring-webmvc:5.0.1.RELEASE',
                'springframework:spring-aop:5.0.1.RELEASE',
                'javax:servlet-api:3.1.0',
                'cisd:cisd-args4j:9.11.2',
                'python:jython:2.5.2',
                'python:jython27:2.7.2',
                'apache:log4j:1.2.15',
                'javax:mail:1.4.3',
                'apache:poi:3.17',
                'twmacinta:fast-md5:2.6.1',
                'google:gwt-servlet:2.4',
                'testng:testng:6.8-CISD',
                'marathon:marathon-spring-util:1.2.5',
                'lemnik:eodsql:2.2-CISD',
                'unimi:fastutil:5.1.5',
    
                'rinn:restrictions:1.0.2',
                'apache:commons-compress:1.8',
                'apache:httpclient:4.3.6',
                'eclipse:jetty-client:9.4.44.v20210927',
                'apache:commons-csv:1.2'
    
        testImplementation project(path: ':lib-commonbase', configuration: 'tests'),
    
                'fjelmer:classycle:1.4.2',
                'testng:testng:6.8-CISD'
    
        if (System.getProperty("openbis.proxyHost") != null) {
            systemProperty "openbis.proxyHost", System.getProperty("openbis.proxyHost")
        }
        if (System.getProperty("openbis.proxyPort") != null) {
            systemProperty "openbis.proxyPort", System.getProperty("openbis.proxyPort")
        }
    
        from "source/java/genericCommonContext.xml"
    
    felmer's avatar
    felmer committed
    }