-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (47 loc) · 1.72 KB
/
build.gradle
File metadata and controls
54 lines (47 loc) · 1.72 KB
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
plugins {
id 'groovy'
id 'java'
id 'org.springframework.boot' version '3.1.0'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.dillon'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security:3.1.2'
implementation 'org.springframework.boot:spring-boot-starter-validation:3.1.2'
implementation 'io.hypersistence:hypersistence-utils-hibernate-62:3.5.3'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
runtimeOnly 'org.postgresql:postgresql'
runtimeOnly 'org.liquibase:liquibase-core'
testImplementation('org.codehaus.groovy:groovy:3.0.16')
testImplementation('org.spockframework:spock-spring:2.4-M1-groovy-3.0')
testImplementation 'org.spockframework:spock-core:2.4-M1-groovy-3.0'
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework:spring-test'
implementation 'org.springframework.boot:spring-boot-starter-hateoas'
testImplementation 'org.testcontainers:spock'
testImplementation 'org.testcontainers:postgresql'
}
tasks.named('test') {
useJUnitPlatform()
}
bootJar {
archiveFileName = "wedding-rsvp-app-api.jar"
}
ext {
set('testcontainersVersion', "1.19.1")
}