-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (44 loc) · 1.55 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
56
57
58
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.6'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.agolo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
all*.exclude module : 'spring-boot-starter-logging'
all*.exclude module : 'logback-classic'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-neo4j'
implementation 'org.springframework.boot:spring-boot-starter-web'
// Neo4j
implementation "org.neo4j:neo4j-ogm-core:${neo4jVersion}"
implementation "org.neo4j:neo4j:${neo4jVersion}"
implementation 'org.neo4j:neo4j-graphdb-api:5.6.0'
implementation 'org.neo4j.driver:neo4j-java-driver'
// ArangoDB
implementation group: 'com.arangodb', name: 'arangodb-java-driver', version: '7.0.0'
// https://mvnrepository.com/artifact/com.arangodb/core
implementation group: 'com.arangodb', name: 'core', version: '7.0.0'
// https://mvnrepository.com/artifact/com.arangodb/arangodb-spring-data
implementation group: 'com.arangodb', name: 'arangodb-spring-data', version: '3.9.0'
// Reactor
implementation 'io.projectreactor:reactor-core'
// Faker4j
implementation "com.github.javafaker:javafaker:${fakerVersion}"
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}