-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
79 lines (58 loc) · 2.09 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.3'
// id 'org.asciidoctor.jvm.convert' version '3.3.2'
}
group = 'org.guzzing'
version = '1.0.0'
java {
sourceCompatibility = '17'
}
repositories {
maven { url "https://repo.osgeo.org/repository/release/" }
mavenCentral()
}
ext {
set('snippetsDir', file("build/generated-snippets"))
}
dependencies {
// web
implementation 'org.springframework.boot:spring-boot-starter-web'
// mysql
runtimeOnly 'com.mysql:mysql-connector-j'
// jpa
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// hibernate spatial
implementation 'org.hibernate:hibernate-spatial:6.4.0.CR1'
// lombok
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
testCompileOnly 'org.projectlombok:lombok:1.18.30'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.30'
// webflux
implementation 'org.springframework.boot:spring-boot-starter-webflux'
runtimeOnly "io.netty:netty-resolver-dns-native-macos:4.1.94.Final:osx-aarch_64"
// jackson
implementation 'com.google.code.gson:gson'
// geojson
implementation 'org.geotools:gt-geojson:30.0'
// test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:3.12.4'
// spatial type
implementation 'org.hibernate:hibernate-spatial:6.3.1.Final'
//excel poi
implementation group: 'org.apache.poi', name: 'poi', version: '4.1.2'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.2'
implementation group: 'org.apache.tika', name: 'tika-core', version: '2.3.0'
// spring-boot-starter-web-services
implementation 'org.springframework.boot:spring-boot-starter-web-services'
// apache httpclient5
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
}
tasks.named('test') {
outputs.dir snippetsDir
useJUnitPlatform()
}