-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
79 lines (49 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// plugins needs to be the first thing declared
plugins {
id "org.jetbrains.gradle.plugin.idea-ext" version "0.7" apply false
}
wrapper {
gradleVersion = '5.6'
}
// configurations common to all subprojects
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.jetbrains.gradle.plugin.idea-ext'
group 'org.aion.tetryon'
version '1.0'
sourceCompatibility = 10
targetCompatibility = 10
repositories {
// jcenter is a superset of mavenCentral
jcenter()
}
// for now, give all subprojects all dependencies,
dependencies {
// include avm libraries
compile fileTree(include: ['*.jar'], dir: '../artifacts/avm')
// include all libraries in the project's lib folder
compile fileTree(include: ['*.jar'], dir: 'lib')
// in-memory java compiler by trung
compile files('../artifacts/mdkt-compiler-1.4.0.jar')
// https://mvnrepository.com/artifact/junit/junit
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.6'
// https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
// https://mvnrepository.com/artifact/org.apache.commons/commons-exec
compile group: 'org.apache.commons', name: 'commons-exec', version: '1.3'
// https://mvnrepository.com/artifact/commons-codec/commons-codec
compile group: 'commons-codec', name: 'commons-codec', version: '1.13'
}
}
// -------------------------------
// project-specific configurations
// -------------------------------
project(':contract-bench') {
// no project-specific settings
}
project(':zokrates-bench') {
// no project-specific settings
}