forked from williamfiset/DEPRECATED-data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
120 lines (98 loc) · 2.86 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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'
}
// Tests display stdout and stderr
test {
dependsOn cleanTest
testLogging.showStandardStreams = true
//useJUnitPlatform()
}
String javaPackage = "com/williamfiset/datastructures";
String javatestsPackage = "javatests/com/williamfiset/datastructures";
sourceSets {
main {
java {
srcDirs = [
javaPackage + '/balancedtree',
javaPackage + '/binarysearchtree',
javaPackage + '/bloomfilter',
javaPackage + '/dynamicarray',
javaPackage + '/fenwicktree',
javaPackage + '/hashtable',
javaPackage + '/linkedlist',
javaPackage + '/priorityqueue',
javaPackage + '/quadtree',
javaPackage + '/queue',
javaPackage + '/segmenttree',
javaPackage + '/hashset',
javaPackage + '/skiplist',
javaPackage + '/stack',
javaPackage + '/suffixarray',
javaPackage + '/trie',
javaPackage + '/unionfind',
javaPackage + '/utils'
]
}
}
test {
java {
srcDirs = [
javatestsPackage + '/balancedtree',
javatestsPackage + '/binarysearchtree',
javatestsPackage + '/bloomfilter',
javatestsPackage + '/dynamicarray',
javatestsPackage + '/fenwicktree',
javatestsPackage + '/hashtable',
javatestsPackage + '/linkedlist',
javatestsPackage + '/priorityqueue',
javatestsPackage + '/quadtree',
javatestsPackage + '/queue',
javatestsPackage + '/segmenttree',
javatestsPackage + '/hashset',
javatestsPackage + '/skiplist',
javatestsPackage + '/stack',
javatestsPackage + '/suffixarray',
javatestsPackage + '/trie',
javatestsPackage + '/unionfind',
javatestsPackage + '/utils'
]
}
}
}
task buildDependenciesFolder(type: Copy) {
from configurations.compile
into './dependencies'
}