forked from naver/ngrinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (42 loc) · 1.24 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
allprojects {
apply plugin: "idea"
group = "org.ngrinder"
version = "3.5.0-SNAPSHOT"
idea {
module {
outputDir file("build/classes/main")
testOutputDir file("build/classes/test")
}
}
if(project.convention.findPlugin(JavaPluginConvention)) {
// Change the output directory for the main and test source sets back to the old path
sourceSets.main.java.outputDir = new File(buildDir, "classes/main")
sourceSets.test.java.outputDir = new File(buildDir, "classes/test")
}
}
subprojects {
apply plugin: "java"
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext {
slf4j_version = "1.6.4"
jetty_version = "9.2.17.v20160517"
spring_security_version = "5.0.11.RELEASE"
spring_boot_version = "2.0.8.RELEASE"
svnkit_version = "1.8.3-scm1"
hibernate_version = "5.2.17.Final"
hazelcast_version = "3.11.1"
gson_version = "2.8.0"
mockito_version = "2.15.0"
}
repositories {
mavenCentral()
maven { url "http://repo.springsource.org/release" }
maven { url "http://maven.scm-manager.org/nexus/content/repositories/releases" }
}
test {
testLogging.showStandardStreams = true
}
}