-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (38 loc) · 886 Bytes
/
build.gradle
File metadata and controls
49 lines (38 loc) · 886 Bytes
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
48
49
subprojects {
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'maven'
//
// Repositories for dependency resolution
// For all subprojects
repositories {
mavenCentral()
}
}
project(':crypto') { group = 'cesi.crypto'
archivesBaseName = 'crypto'
sourceSets {
main {
groovy {
srcDirs 'src/main/java', 'src/main/groovy'
}
}
}
test {
testLogging {
events 'started', 'passed'
}
}
//
// Project dependencies
//
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
// GROOVY DEPENDENCIES
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.2.1'
// UTILS
compile group: 'com.google.guava', name: 'guava', version: '16.0'
// CRYPTO DEPENDENCIES
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.53'
}
}