forked from williamfiset/Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
99 lines (84 loc) · 2.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
apply plugin: 'java'
apply plugin: "com.github.sherter.google-java-format"
// https://github.com/sherter/google-java-format-gradle-plugin
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.8"
}
}
// Assume Java 8
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// JUnit framework
testCompile 'junit:junit:4.+'
compile 'junit:junit:4.+'
// JUnit 5 / Jupiter
testImplementation('org.junit.jupiter:junit-jupiter-api:5.4.2')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.4.2')
// Test mocking framework
testCompile "org.mockito:mockito-core:1.+"
// Google Guava lib
compile group: 'com.google.guava', name: 'guava', version: '22.0'
// Google truth API
compile "com.google.truth:truth:0.36"
// Apache commons lang
compile 'org.apache.commons:commons-lang3:3.6'
}
test {
dependsOn cleanTest
testLogging.showStandardStreams = true
}
String javaAlgorithmsPackage = "com/williamfiset/algorithms";
String javatestsAlgorithmsPackage = "javatests/com/williamfiset/algorithms";
sourceSets {
main {
java {
srcDirs = [
javaAlgorithmsPackage + '/ai',
javaAlgorithmsPackage + '/dp',
javaAlgorithmsPackage + '/datastructures',
javaAlgorithmsPackage + '/geometry',
javaAlgorithmsPackage + '/graphtheory',
javaAlgorithmsPackage + '/linearalgebra',
javaAlgorithmsPackage + '/math',
javaAlgorithmsPackage + '/other',
javaAlgorithmsPackage + '/search',
javaAlgorithmsPackage + '/sorting',
javaAlgorithmsPackage + '/strings',
javaAlgorithmsPackage + '/utils'
]
}
}
test {
java {
srcDirs = [
javatestsAlgorithmsPackage + '/ai',
javatestsAlgorithmsPackage + '/datastructures',
javatestsAlgorithmsPackage + '/dp',
javatestsAlgorithmsPackage + '/geometry',
javatestsAlgorithmsPackage + '/graphtheory',
javatestsAlgorithmsPackage + '/linearalgebra',
javatestsAlgorithmsPackage + '/math',
javatestsAlgorithmsPackage + '/other',
javatestsAlgorithmsPackage + '/search',
javatestsAlgorithmsPackage + '/sorting',
javatestsAlgorithmsPackage + '/strings',
javatestsAlgorithmsPackage + '/utils'
]
}
}
}
task buildDependenciesFolder(type: Copy) {
from configurations.compile
into './dependencies'
}