-
-
Notifications
You must be signed in to change notification settings - Fork 358
/
Copy pathbuild.gradle
41 lines (33 loc) · 1.06 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
plugins {
id 'java'
id 'application'
// always depends on the latest snapshot of Spoon
// https://github.com/patrikerdes/gradle-use-latest-versions-plugin
id 'se.patrikerdes.use-latest-versions' version '0.2.18'
id 'com.github.ben-manes.versions' version '0.46.0'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group 'fr.inria.gforge.spoon'
version '1.0'
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
maven { url 'https://raw.github.com/SpoonLabs/spoon-dependencies/master' }
}
dependencies {
implementation group: 'fr.inria.gforge.spoon', name: 'spoon-core', version: '+'
implementation group: 'commons-cli', name: 'commons-cli', version: '1.5.0'
implementation group: 'com.microsoft', name: 'z3', version: '4.8.4'
testImplementation("org.junit.jupiter:junit-jupiter:5.9.3")
}
application {
mainClass = 'fr.inria.spoon.dataflow.Main'
}
shadowJar {
archiveBaseName.set('spoon-dataflow')
archiveClassifier.set('')
archiveVersion.set('')
}
test {
useJUnitPlatform()
}