-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
47 lines (38 loc) · 1.36 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
/*******************************************************************************
* ===========================================================
* This file is part of the CISE tool software.
*
* The CISE tool software contains proprietary and confidential information of Inria.
* All rights reserved. Reproduction, adaptation or distribution, in whole or in part, is
* forbidden except by express written permission of Inria.
* Version V1.5.1., July 2017
* Authors: Mahsa Najafzadeh, Michał Jabczyński, Marc Shapiro
* Copyright (C) 2017, Inria
* ===========================================================
******************************************************************************/
apply plugin: 'java'
repositories {
mavenCentral()
}
sourceSets {
examples
}
dependencies {
testCompile 'junit:junit:4.12'
compile 'org.slf4j:slf4j-log4j12:1.7.5'
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'com.google.guava:guava:18.0'
compile 'org.javatuples:javatuples:1.2'
compile 'org.antlr:antlr4:4.5.1'
compile fileTree(dir: 'lib', include: ['*.jar'])
}
test {
systemProperty "java.library.path", file("./lib")
}
tasks.withType(JavaExec) {
systemProperty "java.library.path", file("./lib")
}
task(runFoo, dependsOn: 'classes', type: JavaExec) {
main = 'analyzer.SequentialCheck'
classpath = sourceSets.main.runtimeClasspath
}