-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
72 lines (61 loc) · 2.02 KB
/
build.gradle
File metadata and controls
72 lines (61 loc) · 2.02 KB
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
67
68
69
70
71
72
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: "kotlin"
apply plugin: 'application'
apply plugin: 'antlr'
buildscript {
ext.kotlin_version = "1.1.51"
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
repositories {
mavenCentral()
maven { url 'https://repo.gradle.org/gradle/libs-releases' }
}
dependencies {
compile 'org.antlr:antlr4:4.7'
antlr 'org.antlr:antlr4:4.7'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile 'com.samskivert:jmustache:1.13'
compile 'com.github.javaparser:javaparser-core:3.4.1'
compile 'com.github.javaparser:java-symbol-solver-core:0.6.0'
compile 'ch.qos.logback:logback-classic:1.2.3'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.1'
compile 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.1'
compile 'io.github.microutils:kotlin-logging:1.4.6'
compile "org.gradle:gradle-tooling-api:${gradle.gradleVersion}"
compile 'com.xenomachina:kotlin-argparser:2.0.3'
compile 'org.zeroturnaround:zt-zip:1.12'
compile group: 'org.jgrapht', name: 'jgrapht-core', version: '1.0.1'
compile group: 'org.jgrapht', name: 'jgrapht-ext', version: '1.0.1'
compile 'com.github.systemdir.gml:GMLWriterForYed:2.0.0'
compile 'org.apache.maven.shared:maven-invoker:3.0.0'
testCompile 'junit:junit:4.12'
testCompile 'org.eclipse.jetty:jetty-server:9.4.7.v20170914'
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
test {
testLogging {
events "started", "skipped", "failed"
exceptionFormat "full"
}
}
compileJava {
sourceCompatibility = '1.8'
}
generateGrammarSource {
maxHeapSize = "64m"
arguments += ["-visitor", "-long-messages"]
}
mainClassName = "ru.spbstu.kspt.librarymigration.MainKt"
//test.maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1