-
-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathbuild.gradle
42 lines (34 loc) · 1.08 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
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.52.0'
id "com.github.johnrengelman.shadow" version "8.1.1"
}
group 'fr.inria.gforge.spoon'
version '1.0'
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenLocal()
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.9.0'
implementation group: 'tools.aqua', name: 'z3-turnkey', version: '4.13.4'
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
}
application {
mainClass = 'fr.inria.spoon.dataflow.Main'
}
shadowJar {
archiveBaseName.set('spoon-dataflow')
archiveClassifier.set('')
archiveVersion.set('')
}
test {
useJUnitPlatform()
}