Skip to content
Snippets Groups Projects
build.gradle 1.14 KiB
Newer Older
//evaluationDependsOn(':commonbase')
felmer's avatar
felmer committed
apply from: '../gradle/javaproject.gradle'
	compile	project(':commonbase'),
			'springframework:spring-webmvc:+',
			'springframework:spring-aop:+',
			'javax:servlet-api:+',
			'cisd:cisd-args4j:+',
			'python:jython:+',
			'python:jython27:+',
			'javax:activation:+',
			'javax:mail:+',
			'apache:poi:+',
			'twmacinta:fast-md5:+',
			'google:gwt-servlet:+',
			'jmock:jmock:+',
			'testng:testng:+',
			'marathon:marathon-spring-util:+',
			'apache:commons-compress:+',
            'apache:httpclient:+',
            'eclipse:jetty-client:+',
            'apache:commons-csv:+'
	testCompile project(path: ':commonbase', configuration: 'tests'),
				'fjelmer:classycle:+',
				'hamcrest:hamcrest-integration:+',
				'hamcrest:hamcrest-library:+'
}
 
test {
    systemProperty "openbis.proxyHost", System.getProperty("openbis.proxyHost")
    systemProperty "openbis.proxyPort", System.getProperty("openbis.proxyPort")
}
	from "source/java/genericCommonContext.xml"
}