-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
96 lines (78 loc) · 2.28 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
96
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"
}
group 'Apollo-Core-EE-Control'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
if (project.hasProperty("local")) {
implementation project (':EE-Core')
implementation project (':EE-Guice')
implementation project (':EE-Model')
implementation project (':EE-Enactables')
implementation project (':SC-Core')
}else {
// dependencies to other parts of the Apollo Core EE
implementation 'com.github.Apollo-Core:EE-Core:master-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Guice:main-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Model:main-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Enactables:master-SNAPSHOT'
implementation 'com.github.Apollo-Core:SC-Core:main-SNAPSHOT'
}
// Apollo test dependencies
testImplementation('com.github.Apollo-Core:EE-IO:main-SNAPSHOT')
// dependency to Opt4J
implementation 'com.github.FedorSmirnov89:opt4j:master-SNAPSHOT'
// dependency to opendse
implementation 'com.github.FedorSmirnov89:opendse:master-SNAPSHOT'
// gson to define the format of the exchanged messages
implementation 'com.google.code.gson:gson:2.8.6'
// SLF4J and Logback for logging
implementation group: "ch.qos.logback", name: "logback-classic", version: "1.2.3"
// VertX
implementation 'io.vertx:vertx-core:4.1.0'
// test dependencies
// mockito
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.4.4'
// JUnit 5
testImplementation(platform('org.junit:junit-bom:5.7.2'))
testImplementation('org.junit.jupiter:junit-jupiter')
}
java {
withSourcesJar()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
if (rootProject == project) {
wrapper {
gradleVersion = "6.8.3"
distributionType = Wrapper.DistributionType.ALL
}
}
jacocoTestReport {
reports {
xml.enabled true
}
afterEvaluate {
classDirectories.from = files(classDirectories.files.collect {
fileTree(dir: it, exclude: '**/modules/**')
})
}
}
test {
useJUnitPlatform()
}