forked from minebreaker/argon2-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (44 loc) · 1.07 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
plugins {
id 'java'
}
group 'rip.deadcode.argon2'
version '1.0'
repositories {
mavenCentral()
maven {
url = "https://dl.bintray.com/minebreaker/test"
}
}
dependencies {
testCompile(
'org.junit.jupiter:junit-jupiter-api:5.3.2',
'de.mkammerer:argon2-jvm:2.5',
'com.google.truth:truth:0.42',
'org.junit.jupiter:junit-jupiter-engine:5.1.0',
'org.junit.platform:junit-platform-launcher:1.1.0'
// 'com.google.truth.extensions:truth-java8-extension:0.42',
// 'org.mockito:mockito-core:2.23.4',
// 'rip.deadcode:izvestia:0.2',
// 'com.google.jimfs:jimfs:1.1'
)
testRuntime(
'org.junit.jupiter:junit-jupiter-engine:5.3.2',
'de.mkammerer:argon2-jvm:2.5'
)
}
test {
useJUnitPlatform()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava {
options.encoding = 'UTF-8'
}
compileTestJava {
options.encoding = 'UTF-8'
}
task srcZip(type: Zip) {
classifier = 'src'
from sourceSets*.allSource
}
jar.dependsOn(srcZip)