Update dependencies
This commit is contained in:
parent
ea8e33f434
commit
4260a798d1
|
@ -1,44 +1,30 @@
|
|||
plugins {
|
||||
id 'org.springframework.boot' version '2.3.4.RELEASE'
|
||||
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '2.3.4.RELEASE'
|
||||
}
|
||||
|
||||
group = 'com.gradle'
|
||||
version = '1.0.0'
|
||||
sourceCompatibility = '14'
|
||||
|
||||
configurations {
|
||||
compileOnly {
|
||||
extendsFrom annotationProcessor
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
ext {
|
||||
set('testcontainersVersion', "1.14.3")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-security'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
||||
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
||||
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
||||
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
||||
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
||||
}
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
testImplementation 'org.springframework.security:spring-security-test'
|
||||
testImplementation 'org.testcontainers:junit-jupiter'
|
||||
}
|
||||
implementation 'org.springframework.boot:spring-boot-starter:2.3.4.RELEASE'
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}"
|
||||
}
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.3.4.RELEASE'
|
||||
|
||||
compileOnly 'org.projectlombok:lombok:1.18.14'
|
||||
|
||||
testCompileOnly 'org.projectlombok:lombok:1.18.14'
|
||||
|
||||
runtimeOnly files('libs/sampleOne.jar', 'libs/sampleTwo.jar')
|
||||
|
||||
runtimeOnly fileTree('libs') { include '*.jar' }
|
||||
|
||||
// implementation gradleApi()
|
||||
}
|
||||
|
||||
test {
|
||||
|
|
Loading…
Reference in New Issue