IP_LabWorks/build.gradle

40 lines
1.0 KiB
Groovy
Raw Normal View History

2023-02-06 13:47:05 +04:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
}
2023-02-27 23:32:16 +04:00
group = 'com.example'
2023-02-06 13:47:05 +04:00
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
2023-03-06 15:49:54 +04:00
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2023-04-02 17:32:05 +04:00
implementation 'com.h2database:h2:2.1.210'
2023-02-06 13:47:05 +04:00
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2023-05-16 12:09:24 +04:00
implementation 'io.springfox:springfox-swagger-ui:3.0.0'
2023-06-12 20:53:10 +04:00
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
implementation 'org.webjars:bootstrap:5.1.3'
implementation 'org.webjars:jquery:3.6.0'
implementation 'org.webjars:font-awesome:6.1.0'
2023-05-13 21:18:04 +04:00
}
jar {
manifest {
attributes(
'Main-Class': 'com.example.demo'
)
}
2023-02-06 13:47:05 +04:00
}
tasks.named('test') {
useJUnitPlatform()
}