Update dependencies
This commit is contained in:
parent
ea8e33f434
commit
4260a798d1
|
@ -1,44 +1,30 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot' version '2.3.4.RELEASE'
|
|
||||||
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
|
|
||||||
id 'java'
|
id 'java'
|
||||||
|
id 'org.springframework.boot' version '2.3.4.RELEASE'
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'com.gradle'
|
group = 'com.gradle'
|
||||||
version = '1.0.0'
|
version = '1.0.0'
|
||||||
sourceCompatibility = '14'
|
sourceCompatibility = '14'
|
||||||
|
|
||||||
configurations {
|
|
||||||
compileOnly {
|
|
||||||
extendsFrom annotationProcessor
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
|
||||||
set('testcontainersVersion', "1.14.3")
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-security'
|
implementation 'org.springframework.boot:spring-boot-starter:2.3.4.RELEASE'
|
||||||
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'
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencyManagement {
|
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.3.4.RELEASE'
|
||||||
imports {
|
|
||||||
mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}"
|
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 {
|
test {
|
||||||
|
|
Loading…
Reference in New Issue