-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (48 loc) · 1.64 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
plugins {
id 'java-library'
id 'maven-publish'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'online.partyrun'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.0'
implementation 'org.springframework.boot:spring-boot-starter-test:3.1.0'
implementation 'org.springframework.restdocs:spring-restdocs-mockmvc:3.0.0'
implementation 'org.springframework.security:spring-security-test:6.1.0'
implementation 'de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring30x:4.7.0'
implementation 'com.github.SWM-KAWAI-MANS:spring-security-authorization-manager:1.0.0'
implementation 'org.springframework.boot:spring-boot-testcontainers:3.1.0'
implementation 'org.testcontainers:junit-jupiter:1.19.0'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.1.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.1.0'
compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
testCompileOnly 'org.projectlombok:lombok:1.18.26'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.26'
}
tasks.named('test') {
useJUnitPlatform()
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'online'
artifactId = 'partyrun'
version = '0.1.0'
from components.java
}
}
}