-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathbuild.gradle
More file actions
23 lines (19 loc) · 906 Bytes
/
build.gradle
File metadata and controls
23 lines (19 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
plugins {
id 'java-library'
}
apply from: "../java_shared.gradle"
apply from: "../publish.gradle"
task ciTest( type: Test )
dependencies {
compile project(':cloudinary-core')
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.18.0'
testCompile group: 'org.hamcrest', name: 'java-hamcrest', version:'2.0.0.0'
testCompile group: 'pl.pragmatists', name: 'JUnitParams', version:'1.0.5'
testCompile group: 'junit', name: 'junit', version:'4.12'
compile(group: 'javax.servlet', name: 'jsp-api', version:'2.0') {
/* This dependency was originally in the Maven provided scope, but the project was not of type war.
This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency.
Please review and delete this closure when resolved. */
}
}
// Publishing configuration moved to ../publish.gradle