-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
40 lines (33 loc) · 949 Bytes
/
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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java-library'
id "com.github.johnrengelman.shadow" version "8.1.1"
id 'application'
}
repositories {
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'org.apache.commons:commons-csv:1.10.0'
implementation files("lib/antlr-3.4.jar")
implementation files("lib/de.ovgu.featureide.lib.fm.attributes-v3.9.2.jar")
implementation files("lib/de.ovgu.featureide.lib.fm-v3.9.2.jar")
implementation files("lib/org.sat4j.core.jar")
implementation files("lib/uvl-parser.jar")
}
group = 'org.collection.fm'
version = '1.0-SNAPSHOT'
description = 'batchanalysis'
java.sourceCompatibility = JavaVersion.VERSION_21
application {
mainClass = 'org.collection.fm.FeatureStepAnalysis'
}
jar {
manifest {
attributes 'Main-Class': 'org.collection.fm.FeatureStepAnalysis'
}
}