forked from MrBly/WalnutiQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 1.01 KB
/
build.gradle
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
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'eclipse'
// In this section you declare where to find the dependencies of your project
repositories {
mavenCentral()
}
sourceSets {
main {
java {
srcDirs 'src/main/java' // where the main code is
}
}
test {
java {
srcDir 'src/test/java' // tests for all the main code
srcDir 'experiments'
}
resources {
srcDir 'images'
}
}
}
// In this section you declare the dependencies for your production and test code
dependencies {
compile 'com.google.code.gson:gson:2.2.4'
compile files('referencedLibraries/mnist-tools.jar')
runtime fileTree(dir: 'referencedLibraries', include: '*.jar')
testCompile 'junit:junit:4.11'
}
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
// create Gradle wrapper
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
}