-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (39 loc) · 939 Bytes
/
build.gradle
File metadata and controls
47 lines (39 loc) · 939 Bytes
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.1.0'
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'org.junit.platform.gradle.plugin'
jar {
baseName = 'SecureRandomStringGenerator'
version = '1.0.1'
manifest {
attributes 'Main-Class': 'amdegregorio.securerandomstring.SecureRandomStringGenerator'
}
}
mainClassName = 'amdegregorio.securerandomstring.SecureRandomStringGenerator'
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
testCompile (
'com.google.guava:guava:33.2.1-jre'
)
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.1'
testRuntimeOnly(
'org.junit.jupiter:junit-jupiter-engine:5.1.1'
)
}
test {
useJUnitPlatform()
testLogging {
showStandardStreams = true
}
}