-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (39 loc) · 1.28 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
//initialize Kotlin build plugin
buildscript {
ext.kotlin_version = '1.2.41'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'application'
group = "com.github.sybila"
mainClassName = "com.github.sybila.MainKt"
version = '1.0.0'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
// jitpack provides our internal dependencies
maven { url "https://jitpack.io" }
}
// In this section you declare the dependencies for your production and test code
dependencies {
// ODE and CTL modules do not propagate this dependency, because it's part of the plugin
compile 'org.antlr:antlr4-runtime:4.6'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'args4j:args4j:2.33'
// BioDivine modules.
compile 'com.github.sybila:ode-generator:1.3.2'
compile 'com.github.sybila:ctl-model-checker:2.1.2'
}
task wrapper(type: Wrapper) {
gradleVersion = '3.4.1'
}