blob: 259d4c5a62f0e86d58cbc57e7fa7def340f3a998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
//grails.project.war.file = "target/${appName}-${appVersion}.war"
grails.project.war.file = "target/${appName}.war"
grails.project.dependency.resolution = {
// inherit Grails' default dependencies
inherits("global") { // uncomment to disable ehcace
excludes 'ehcache'}
log "warn" // LOG level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
repositories {
// uncomment the below to enable remote dependency resolution
// from public Maven repositories
mavenLocal()
mavenCentral()
mavenRepo "http://snapshots.repository.codehaus.org"
mavenRepo "http://repository.codehaus.org"
mavenRepo "http://download.java.net/maven/2/"
mavenRepo "http://repository.jboss.com/maven2/"
mavenRepo "http://ci-dev.renci.org/nexus/content/repositories/release"
mavenRepo "http://ci-dev.renci.org/nexus/content/repositories/snapshots"
grailsPlugins()
grailsHome()
grailsCentral()
}
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
//test 'org.irods.jargon:jargon-test:3.1.3-SNAPSHOT'
test 'org.mockito:mockito-all:1.8.1'
compile 'commons-io:commons-io:2.1'
provided 'junit:junit:4.8.1'
compile 'org.irods.jargon:jargon-core:3.1.4'
compile 'org.irods.jargon:jargon-security:3.1.3'
compile 'org.irods.jargon:jargon-data-utils:3.1.4'
compile 'org.irods.jargon:jargon-ticket:3.1.4'
compile ('org.irods.jargon:jargon-user-tagging:3.1.4') { exclude 'junit' }
compile 'org.springframework.security:spring-security-core:3.0.5.RELEASE'
compile 'org.springframework.security:spring-security-web:3.0.5.RELEASE'
compile 'org.springframework.security:spring-security-config:3.0.5.RELEASE'
compile 'org.springframework:spring-web:3.0.5.RELEASE'
provided 'javax.servlet:servlet-api:2.5'
compile 'org.jsoup:jsoup:0.2.2'
compile( group: 'log4j', name: 'log4j', version: '1.2.16', export: false )
}
}
|