forked from williamfiset/Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
76 lines (62 loc) · 1.78 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
apply plugin: 'java'
apply plugin: "com.github.sherter.google-java-format"
apply plugin: 'application'
mainClassName = findProperty("main") ?: "com.williamfiset.algorithms.${findProperty("algorithm") ?: 'missingPackage.missingClass'}"
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
// https://github.com/sherter/google-java-format-gradle-plugin
classpath "gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.8"
}
}
// Require Java 8
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
// Describe all project deps. Use 'testCompile' for test dependencies and
// 'compile' for project dependencies.
dependencies {
// Apache commons lang
testCompile 'org.apache.commons:commons-lang3:3.6'
// JUnit framework
testCompile 'junit:junit:4.+'
// JUnit 5 / Jupiter
testImplementation('org.junit.jupiter:junit-jupiter-api:5.4.2')
// Google Guava lib
testCompile group: 'com.google.guava', name: 'guava', version: '22.0'
// Google Truth test framework
// https://mvnrepository.com/artifact/com.google.truth/truth
testCompile group: 'com.google.truth', name: 'truth', version: '1.0'
// Test mocking framework
testCompile "org.mockito:mockito-core:1.+"
}
test {
dependsOn cleanTest
testLogging.showStandardStreams = true
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs += [
'-Xlint:unchecked',
'-Xlint:deprecation'
]
}
// Options when compiling tests
compileTestJava {
options.encoding = 'UTF-8'
options.compilerArgs += [
'-Xlint:unchecked',
'-Xlint:deprecation'
]
}
task buildDependenciesFolder(type: Copy) {
from configurations.compile
into './dependencies'
}