by Initial gradle file [build.gradle]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
apply plugin: 'idea' apply plugin: 'java' apply plugin: 'groovy' sourceCompatibility = 1.8 targetCompatibility = 1.8 version = '1.0' repositories { mavenCentral() } dependencies { compile 'org.springframework.data:spring-data-neo4j:4.1.1.RELEASE' compile 'org.neo4j.driver:neo4j-java-driver:1.0.1' } task wrapper(type: Wrapper) { gradleVersion = '2.0' } |
Run: gradle wrapper by
Continue reading »