-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (32 loc) · 1.11 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
group 'org.sorcerers'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlinVersion = '1.2.61'
ext.neo4jVersion = '3.4.6'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'application'
mainClassName = 'org.sorcerers.git2neo.runner.MainKt'
repositories {
mavenCentral()
}
dependencies {
compile "org.neo4j:neo4j:$neo4jVersion"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '4.11.0.201803080745-r'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
compile group: 'commons-io', name: 'commons-io', version: '2.4'
testCompile group: 'org.neo4j', name: 'neo4j-kernel', version: "$neo4jVersion", classifier: 'tests'
testCompile group: 'org.neo4j', name: 'neo4j-io', version: "$neo4jVersion", classifier: 'tests'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
task wrapper(type: Wrapper) {
gradleVersion = "4.0"
}