-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
82 lines (69 loc) · 1.87 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
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'
apply plugin: 'jacoco'
// for compliance with higher Java versions
jacoco {
toolVersion = "0.8.5"
}
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
// dependencies to Apollo repositories
if (project.hasProperty("local")) {
implementation project (':EE-Core')
implementation project (':EE-Guice')
implementation project (':EE-Model')
implementation project (':EE-Enactables')
}else {
implementation 'com.github.Apollo-Core:EE-Model:main-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Core:master-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Enactables:master-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Guice:main-SNAPSHOT'
}
// dependency to Opt4J
implementation 'com.github.FedorSmirnov89:opt4j:master-SNAPSHOT'
// dependency to opendse
implementation 'com.github.FedorSmirnov89:opendse:master-SNAPSHOT'
implementation 'com.google.code.gson:gson:2.8.6'
// VertX
implementation 'io.vertx:vertx-core:4.1.0'
// test dependencies
testImplementation(platform('org.junit:junit-bom:5.7.2'))
testImplementation('org.junit.jupiter:junit-jupiter')
testCompile group: 'org.mockito', name: 'mockito-core', version: '3.4.4'
// dependency to local files
// compile files('libs/lib.jar')
}
java {
withSourcesJar()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
if (rootProject == project) {
wrapper {
gradleVersion = "6.8.3"
distributionType = Wrapper.DistributionType.ALL
}
}
test {
useJUnitPlatform()
}
jacocoTestReport {
reports {
xml.enabled true
}
afterEvaluate {
classDirectories.from = files(classDirectories.files.collect {
fileTree(dir: it, exclude: '**/modules/**')
})
}
}