forked from pxlphile/featherwhite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (27 loc) · 961 Bytes
/
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
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'idea'
// Define the main class for the application
mainClassName = 'de.philipppixel.featherwhite.app.FeatherWhite'
group = 'de.philipppixel'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
// In this section you declare where to find the dependencies of your project
repositories {
maven {
url 'https://repo.spring.io/libs-release'
}
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.12'
// This dependency is found on compile classpath of this component and consumers.
compile 'com.google.guava:guava:22.0'
testCompile 'junit:junit:4.12'
compile 'org.springframework.data:spring-data-neo4j:5.0.0.RELEASE'
compile 'org.neo4j:neo4j:3.2.5'
compile 'org.neo4j:neo4j-kernel:3.2.5'
compile 'org.neo4j:neo4j-graphdb-api:3.2.5'
compile 'org.neo4j:neo4j-ogm-embedded-driver:3.0.0'
}