forked from naver/ngrinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (42 loc) · 1.27 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.output.classesDir = new File(buildDir, "classes/main")
sourceSets.test.output.classesDir = new File(buildDir, "classes/test")
}
}
subprojects {
apply plugin: "java"
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
sourceCompatibility = 1.7
targetCompatibility = 1.7
ext {
slf4j_version = "1.6.4"
jetty_version = "9.2.17.v20160517"
spring_security_version = "4.1.3.RELEASE"
spring_data_version = "1.9.4.RELEASE"
spring_version = "4.2.5.RELEASE"
springboot_version = "1.4.1.RELEASE"
svnkit_version = "1.8.3-scm1"
hibernate_version = "5.0.11.Final"
hazelcast_version = "3.11.1"
}
repositories {
mavenCentral()
maven { url "http://repo.springsource.org/release" }
maven { url "http://maven.scm-manager.org/nexus/content/repositories/releases" }
}
test {
testLogging.showStandardStreams = true
}
}