-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (45 loc) · 1.4 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
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'stefano' at '25/01/15 18:41' with Gradle 2.2.1
*
* This generated file contains a commented-out sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at http://gradle.org/docs/2.2.1/userguide/tutorial_java_projects.html
*/
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = 'bragaglia'
version = '0.0.1'
def neo4jVersion = "2.1.7"
mainClassName = 'evaluate.Application'
run {
args " ".split()
}
jar {
manifest {
attributes 'Implementation-Title': rootProject.name, 'Implementation-Version': version
mainAttributes 'Main-Class': mainClassName
}
from {
configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// compile 'com.graphaware.neo4j:graphaware-framework-embedded:2.1.7.28'
// compile 'com.graphaware.neo4j:relcount:2.1.7.28.9'
compile "org.neo4j:neo4j:${neo4jVersion}"
compile "org.neo4j:neo4j-graphviz:${neo4jVersion}"
// compile "org.neo4j:neo4j-kernel:${neo4jVersion}"
compile "org.apache.commons:commons-collections4:4.0"
testCompile "junit:junit:4.11"
}