-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
60 lines (51 loc) · 1.73 KB
/
build.gradle
File metadata and controls
60 lines (51 loc) · 1.73 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
55
56
57
58
59
60
plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '3.0.6'
}
group 'org.svip'
version '1.0.0-alpha'
application {
mainClassName = 'org.svip.api.SVIPApplication'
mainClass = 'org.svip.api.SVIPApplication'
}
repositories {
mavenCentral()
}
dependencies {
implementation project(':core')
implementation ('org.springframework.boot:spring-boot-starter-web:3.0.2')
implementation 'com.mikemybytes:junit5-formatted-source:0.2.0'
implementation 'com.mikemybytes:junit5-formatted-source:0.2.0'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.4'
implementation 'com.mysql:mysql-connector-j:8.0.32'
implementation 'org.springframework.boot:spring-boot-test:3.0.4'
implementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
implementation 'org.mockito:mockito-core:5.2.0'
implementation 'org.mockito:mockito-junit-jupiter:5.2.0'
implementation 'org.springframework.boot:spring-boot-starter-test:3.1.2'
testImplementation ('org.springframework.boot:spring-boot-starter-web:3.0.2')
implementation('org.springframework:spring-web:6.0.7')
implementation('org.springframework.boot:spring-boot-autoconfigure:3.0.4')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
testImplementation('org.springframework:spring-test:6.0.7')
implementation 'org.cyclonedx:cyclonedx-core-java:7.3.2'
implementation project(path: ':core')
}
test {
useJUnitPlatform()
}
sourceSets {
test {
java {
srcDir 'test'
}
}
}
bootJar {
mainClassName = 'org.svip.api.SVIPApplication'
}
tasks.named('javadoc') {
source = sourceSets.main.allJava
options.memberLevel = JavadocMemberLevel.PRIVATE
}