forked from pombredanne/zerograph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (42 loc) · 1.34 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
/*
* This build file was auto generated by running the Gradle 'buildSetup' task
* by 'elgin' at '20/02/14 21:44' with Gradle 1.8
*
* 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/1.8/userguide/tutorial_java_projects.html
*/
// Apply the java plugin to add support for Java
apply plugin: "java"
apply plugin: "application"
sourceSets {
main {
java {
srcDir 'src/server/java'
}
}
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'maven central' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenCentral()
}
dependencies {
compile "org.neo4j:neo4j:2.0.1"
compile "org.zeromq:jeromq:0.3.2"
compile "org.codehaus.jackson:jackson-mapper-asl:1.9.7"
testCompile(group: 'org.neo4j', name: 'neo4j-kernel', version: '2.0.1', classifier: 'tests')
testCompile 'junit:junit:4.11'
}
group = 'org.zerograph'
version = '0'
jar {
manifest {
attributes 'Implementation-Title': 'zerograph', 'Implementation-Version': version
}
}
task wrapper(type: Wrapper) {
gradleVersion = '1.8'
}
mainClassName = "org.zerograph.Zerograph"