-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
61 lines (51 loc) · 1.99 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
wrapper.gradleVersion = '6.3'
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'jacoco'
group = 'edu.kit.ifv.mobitopp'
version = project.hasProperty('next_version') ? project.property('next_version') : '0.0-SNAPSHOT'
sourceCompatibility = 1.12
targetCompatibility = 1.12
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
ext.versions = [
junit: '5.7.0',
mockito: '3.0.0'
]
ext.libraries = [
actitopp: 'edu.kit.ifv.mobitopp:actitopp:0.1',
commons_compress: 'org.apache.commons:commons-compress:1.12',
lombok: 'org.projectlombok:lombok:1.18.8',
opencsv: 'net.sf.opencsv:opencsv:2.3',
snakeyaml: 'org.yaml:snakeyaml:1.18',
assertj: 'org.assertj:assertj-core:3.13.2',
equalsverifier: 'nl.jqno.equalsverifier:equalsverifier:3.1.10',
hamcrest_all: 'org.hamcrest:hamcrest-all:1.3',
hamcrest_optional: 'com.github.npathai:hamcrest-optional:1.0',
junit_jupiter: 'org.junit.jupiter:junit-jupiter:' + versions.junit,
junit_migrationsupport: 'org.junit.jupiter:junit-jupiter-migrationsupport:' + versions.junit,
junit_vintage: 'org.junit.vintage:junit-vintage-engine:' + versions.junit,
mockito_core: 'org.mockito:mockito-core:' + versions.mockito,
mockito_junit_jupiter: 'org.mockito:mockito-junit-jupiter:' + versions.mockito,
rhino_engine: 'org.mozilla:rhino-engine:1.7.13',
rhino: 'org.mozilla:rhino:1.7.13',
gson: 'com.google.code.gson:gson:2.8.6',
slf4j: 'org.slf4j:slf4j-api:1.7.32',
log4j: 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.1'
]
configurations.all {
exclude group: 'xerces', module: 'xerces'
resolutionStrategy {
//failOnVersionConflict()
}
}
eclipse.classpath {
downloadSources=true
}
}