-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (49 loc) · 1.63 KB
/
build.gradle
File metadata and controls
56 lines (49 loc) · 1.63 KB
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
buildscript {
repositories {
jcenter()
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
apply plugin: 'jacoco'
// for compliance with higher Java versions
jacoco {
toolVersion = "0.8.5"
}
mainClassName = 'at.uibk.dps.ee.guice.starter.EeConfiguration'
group 'importance'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name "jitpack"
url 'https://jitpack.io' }
}
dependencies {
if (project.hasProperty("local")) {
implementation project (':EE-Core')
implementation project (':EE-Guice')
implementation project (':EE-Model')
implementation project (':EE-IO')
implementation project (':EE-Enactables')
implementation project (':SC-Core')
implementation project (':EE-Control')
implementation project (':EE-Visualization')
implementation project (':EE-Docker')
}else {
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-IO:main-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Enactables:master-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Control:master'
implementation 'com.github.Apollo-Core:SC-Core:main-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Visualization:master-SNAPSHOT'
implementation 'com.github.Apollo-Core:EE-Docker:master-SNAPSHOT'
}
// dependency to Opt4J
implementation 'com.github.FedorSmirnov89:opt4j:-SNAPSHOT'
// dependency to opendse
implementation 'com.github.FedorSmirnov89:opendse:-SNAPSHOT'
}