-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
50 lines (43 loc) · 1.33 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.1'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.management'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation "com.vladmihalcea:hibernate-types-60:2.20.0"
implementation 'org.postgresql:postgresql'
implementation 'io.hypersistence:hypersistence-utils-hibernate-62:3.5.0'
implementation 'ch.qos.logback:logback-classic'
implementation 'org.slf4j:slf4j-api'
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
implementation 'org.apache.poi:poi:5.0.0'
//sentry
implementation 'io.sentry:sentry-spring-boot-starter-jakarta:6.25.0'
implementation 'io.sentry:sentry-logback:6.25.2'
//swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
//h2
implementation 'com.h2database:h2:1.4.200'
}
tasks.named('test') {
useJUnitPlatform()
}
jar { enabled = false }