-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (37 loc) · 1.23 KB
/
Copy pathbuild.gradle
File metadata and controls
51 lines (37 loc) · 1.23 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
plugins {
id 'java'
id 'application'
id "com.github.johnrengelman.shadow" version "8.1.1"
}
group = 'de.uulm.sp.fmc.as4moco'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.15.2'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.15.3'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: '2.15.3'
// https://mvnrepository.com/artifact/commons-cli/commons-cli
implementation group: 'commons-cli', name: 'commons-cli', version: '1.5.0'
implementation 'org.apache.commons:commons-csv:1.10.0'
}
git {
implementation 'https://github.com/RSD6170/feature-model-batch-analysis.git', {
name 'FeatureExtraction'
commit 'd56236e77f96a23d76370a07fbc07133e4bc96a1'
}
}
application {
mainClass = 'de.uulm.sp.fmc.as4moco.Main'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Main-Class': 'org.collection.fm.FeatureStepAnalysis'
}
}