-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
95 lines (75 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
buildscript {
ext {
log4jVersion = '1.2.7'
httpClientVersion = '4.5.2'
apacheCommonsVersion = '3.2'
jCommanderVersion = '1.47'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'jacoco'
group = 'br.com.sumware.proxy'
sourceCompatibility = 1.6
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
jar {
baseName = 'proxy-test'
version = '1.0'
manifest {
attributes 'Main-Class': 'br.com.sumware.proxy.ProxyTest'
}
}
shadowJar {
baseName = 'proxy'
classifier = null
version = 'test'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
// Log4J
compile group: 'log4j', name: 'log4j', version: "${log4jVersion}"
// HTTP Client
compile group: 'org.apache.httpcomponents', name: 'httpclient', version:"${httpClientVersion}"
// Apache Commons
compile group: 'org.apache.commons', name: 'commons-lang3', version: "${apacheCommonsVersion}"
//JCommander
compile group: 'com.beust', name: 'jcommander', version: "${jCommanderVersion}"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}
task compileOne (type: JavaCompile) {
source = fileTree(dir: 'src', include: '**/*.java')
classpath = files('build/classes/main')
destinationDir = file('build/classes/main')
sourceCompatibility = '1.6'
targetCompatibility = '1.6'
}
compileOne.options.compilerArgs = ["-sourcepath", "$projectDir/src/main/java"]
test {
useJUnitPlatform()
maxHeapSize = '1G'
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
check.dependsOn jacocoTestReport
}