2020-09-10 15:56:33 -04:00
|
|
|
plugins {
|
|
|
|
id "java"
|
2021-10-04 14:04:13 -04:00
|
|
|
id "nebula.integtest" version "8.2.0"
|
2020-09-10 15:56:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2022-01-17 10:44:01 -05:00
|
|
|
mavenCentral()
|
2022-01-03 19:24:50 -05:00
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
2020-11-19 13:35:34 -05:00
|
|
|
maven { url "https://repo.spring.io/snapshot" }
|
2020-09-10 15:56:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-12-06 08:05:41 -05:00
|
|
|
implementation platform("org.springframework:spring-framework-bom:6.0.0-SNAPSHOT")
|
|
|
|
implementation platform("org.springframework.security:spring-security-bom:6.0.0-SNAPSHOT")
|
2020-10-28 15:31:00 -04:00
|
|
|
implementation platform("org.junit:junit-bom:5.7.0")
|
2020-09-10 15:56:33 -04:00
|
|
|
|
|
|
|
implementation "org.springframework.security:spring-security-config"
|
|
|
|
implementation "org.springframework.security:spring-security-data"
|
|
|
|
implementation "org.springframework.security:spring-security-web"
|
|
|
|
implementation 'jakarta.validation:jakarta.validation-api:2.0.2'
|
2021-12-06 08:05:41 -05:00
|
|
|
implementation 'jakarta.persistence:jakarta.persistence-api:3.0.0'
|
2022-07-12 13:03:17 -04:00
|
|
|
implementation 'org.hibernate.orm:hibernate-core:6.1.1.Final'
|
2021-12-06 08:05:41 -05:00
|
|
|
implementation 'org.hibernate.validator:hibernate-validator:7.0.1.Final'
|
2020-09-10 15:56:33 -04:00
|
|
|
implementation 'org.hsqldb:hsqldb:2.5.1'
|
2021-12-06 08:05:41 -05:00
|
|
|
implementation 'org.springframework.data:spring-data-jpa:3.0.0-SNAPSHOT'
|
2020-09-10 15:56:33 -04:00
|
|
|
|
2020-10-28 15:34:51 -04:00
|
|
|
testImplementation "org.assertj:assertj-core:3.18.0"
|
2020-09-10 15:56:33 -04:00
|
|
|
testImplementation "org.springframework:spring-test"
|
|
|
|
testImplementation "org.springframework.security:spring-security-test"
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api")
|
|
|
|
|
|
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(Test).configureEach {
|
|
|
|
useJUnitPlatform()
|
2021-12-13 11:04:46 -05:00
|
|
|
outputs.upToDateWhen { false }
|
2020-09-10 15:56:33 -04:00
|
|
|
}
|