Polish quote form used in Gradle scripts
Replace Gradle single quote strings with the double quote form
whenever possible. The change helps to being consistency to the
dependencies section where mostly single quotes were used, but
occasionally double quotes were required due to `${}` references.
This commit is contained in:
@@ -1,27 +1,27 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id 'org.springframework.boot.integration-test'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
id "org.springframework.boot.integration-test"
|
||||
}
|
||||
|
||||
description = "Spring Boot Deployment Tests"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')) {
|
||||
exclude group: 'org.hibernate.validator'
|
||||
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude group: "org.hibernate.validator"
|
||||
}
|
||||
|
||||
intTestImplementation enforcedPlatform(project(path: ":spring-boot-project:spring-boot-parent"))
|
||||
intTestImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
intTestImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-test-support')
|
||||
intTestImplementation 'org.apache.httpcomponents:httpasyncclient'
|
||||
intTestImplementation 'org.awaitility:awaitility'
|
||||
intTestImplementation 'org.testcontainers:testcontainers'
|
||||
intTestImplementation 'org.springframework:spring-web'
|
||||
intTestImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
intTestImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
||||
intTestImplementation "org.apache.httpcomponents:httpasyncclient"
|
||||
intTestImplementation "org.awaitility:awaitility"
|
||||
intTestImplementation "org.testcontainers:testcontainers"
|
||||
intTestImplementation "org.springframework:spring-web"
|
||||
|
||||
providedRuntime project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
providedRuntime project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
|
||||
runtimeOnly project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
runtimeOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
}
|
||||
|
||||
intTest {
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = "Spring Boot Configuration Processor Tests"
|
||||
|
||||
dependencies {
|
||||
annotationProcessor project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-processor')
|
||||
annotationProcessor project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-processor")
|
||||
|
||||
implementation enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies'))
|
||||
implementation project(':spring-boot-project:spring-boot')
|
||||
implementation 'jakarta.validation:jakarta.validation-api'
|
||||
implementation enforcedPlatform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||
implementation project(":spring-boot-project:spring-boot")
|
||||
implementation "jakarta.validation:jakarta.validation-api"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata")
|
||||
}
|
||||
@@ -1,19 +1,19 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot'
|
||||
id "java"
|
||||
id "org.springframework.boot"
|
||||
}
|
||||
|
||||
apply plugin: 'io.spring.dependency-management'
|
||||
apply plugin: "io.spring.dependency-management"
|
||||
|
||||
repositories {
|
||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
||||
mavenCentral()
|
||||
maven { url 'https://repo.spring.io/snapshot' }
|
||||
maven { url 'https://repo.spring.io/milestone' }
|
||||
maven { url "https://repo.spring.io/snapshot" }
|
||||
maven { url "https://repo.spring.io/milestone" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
}
|
||||
|
||||
bootJar {
|
||||
|
||||
@@ -2,12 +2,12 @@ pluginManagement {
|
||||
repositories {
|
||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
||||
mavenCentral()
|
||||
maven { url 'https://repo.spring.io/snapshot' }
|
||||
maven { url 'https://repo.spring.io/milestone' }
|
||||
maven { url "https://repo.spring.io/snapshot" }
|
||||
maven { url "https://repo.spring.io/milestone" }
|
||||
}
|
||||
resolutionStrategy {
|
||||
eachPlugin {
|
||||
if (requested.id.id == 'org.springframework.boot') {
|
||||
if (requested.id.id == "org.springframework.boot") {
|
||||
useModule "org.springframework.boot:spring-boot-gradle-plugin:${requested.version}"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id 'org.springframework.boot.integration-test'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
id "org.springframework.boot.integration-test"
|
||||
}
|
||||
|
||||
description = "Spring Boot Launch Script Integration Tests"
|
||||
@@ -11,13 +11,13 @@ configurations {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
app project(path: ':spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin', configuration: 'mavenRepository')
|
||||
app project(path: ':spring-boot-project:spring-boot-starters:spring-boot-starter-web', configuration: 'mavenRepository')
|
||||
app project(path: ":spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin", configuration: "mavenRepository")
|
||||
app project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-web", configuration: "mavenRepository")
|
||||
|
||||
intTestImplementation enforcedPlatform(project(':spring-boot-project:spring-boot-parent'))
|
||||
intTestImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-test-support')
|
||||
intTestImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
intTestImplementation 'org.testcontainers:testcontainers'
|
||||
intTestImplementation enforcedPlatform(project(":spring-boot-project:spring-boot-parent"))
|
||||
intTestImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
||||
intTestImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
intTestImplementation "org.testcontainers:testcontainers"
|
||||
}
|
||||
|
||||
task syncMavenRepository(type: Sync) {
|
||||
@@ -26,7 +26,7 @@ task syncMavenRepository(type: Sync) {
|
||||
}
|
||||
|
||||
task syncAppSource(type: Sync) {
|
||||
from 'app'
|
||||
from "app"
|
||||
into "${buildDir}/app"
|
||||
filter { line ->
|
||||
line.replace("id 'org.springframework.boot'", "id 'org.springframework.boot' version '${project.version}'")
|
||||
@@ -37,7 +37,7 @@ task buildApp(type: GradleBuild) {
|
||||
dependsOn syncAppSource, syncMavenRepository
|
||||
dir = "${buildDir}/app"
|
||||
startParameter.buildCacheEnabled = false
|
||||
tasks = ['build']
|
||||
tasks = ["build"]
|
||||
}
|
||||
|
||||
intTest {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = "Spring Boot Server Tests"
|
||||
@@ -10,33 +10,32 @@ configurations {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-test-support')
|
||||
|
||||
testImplementation 'com.samskivert:jmustache'
|
||||
testImplementation 'jakarta.servlet:jakarta.servlet-api'
|
||||
testImplementation 'org.apache.httpcomponents:httpasyncclient'
|
||||
testImplementation 'org.apache.maven.shared:maven-invoker:3.0.0'
|
||||
testImplementation 'org.awaitility:awaitility'
|
||||
testImplementation('org.eclipse.jetty:jetty-webapp') {
|
||||
exclude group: 'javax.servlet', module: 'javax-servlet-api'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
||||
testImplementation "com.samskivert:jmustache"
|
||||
testImplementation "jakarta.servlet:jakarta.servlet-api"
|
||||
testImplementation "org.apache.httpcomponents:httpasyncclient"
|
||||
testImplementation "org.apache.maven.shared:maven-invoker:3.0.0"
|
||||
testImplementation "org.awaitility:awaitility"
|
||||
testImplementation("org.eclipse.jetty:jetty-webapp") {
|
||||
exclude group: "javax.servlet", module: "javax-servlet-api"
|
||||
}
|
||||
testImplementation 'org.springframework:spring-web'
|
||||
testImplementation "org.springframework:spring-web"
|
||||
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-dependencies', configuration: 'mavenRepository')
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-tools:spring-boot-maven-plugin', configuration: 'mavenRepository')
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-starters:spring-boot-starter', configuration: 'mavenRepository')
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-starters:spring-boot-starter-jetty', configuration: 'mavenRepository')
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-starters:spring-boot-starter-parent', configuration: 'mavenRepository')
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat', configuration: 'mavenRepository')
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-starters:spring-boot-starter-undertow', configuration: 'mavenRepository')
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-dependencies", configuration: "mavenRepository")
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-tools:spring-boot-maven-plugin", configuration: "mavenRepository")
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter", configuration: "mavenRepository")
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty", configuration: "mavenRepository")
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-parent", configuration: "mavenRepository")
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat", configuration: "mavenRepository")
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-undertow", configuration: "mavenRepository")
|
||||
|
||||
testRuntimeOnly project(':spring-boot-project:spring-boot-starters:spring-boot-starter-logging')
|
||||
testRuntimeOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-logging")
|
||||
}
|
||||
|
||||
task prepareMavenBinaries(type: org.springframework.boot.build.mavenplugin.PrepareMavenBinaries) {
|
||||
outputDir = file("${buildDir}/maven-binaries")
|
||||
versions '3.6.2'
|
||||
versions "3.6.2"
|
||||
}
|
||||
|
||||
task syncTestRepository(type: Sync) {
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Actuator ActiveMQ smoke test'
|
||||
description = "Spring Boot Actuator ActiveMQ smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-activemq')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-activemq")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
@@ -1,19 +1,19 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Actuator custom security smoke test'
|
||||
description = "Spring Boot Actuator custom security smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
runtimeOnly 'org.jolokia:jolokia-core'
|
||||
runtimeOnly "org.jolokia:jolokia-core"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
|
||||
testRuntimeOnly 'org.apache.httpcomponents:httpclient'
|
||||
testRuntimeOnly "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Actuator Log4j 2 smoke test'
|
||||
description = "Spring Boot Actuator Log4j 2 smoke test"
|
||||
|
||||
configurations.all {
|
||||
exclude module: 'spring-boot-starter-logging'
|
||||
exclude module: "spring-boot-starter-logging"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-log4j2')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-log4j2")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Actuator non-web smoke test'
|
||||
description = "Spring Boot Actuator non-web smoke test"
|
||||
|
||||
dependencies {
|
||||
annotationProcessor project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-processor')
|
||||
annotationProcessor project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-processor")
|
||||
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Actuator UI smoke test'
|
||||
description = "Spring Boot Actuator UI smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
@@ -1,19 +1,19 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Actuator smoke test'
|
||||
description = "Spring Boot Actuator smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-validation')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-validation")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testRuntimeOnly 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testRuntimeOnly "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot AMQP smoke test'
|
||||
description = "Spring Boot AMQP smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-amqp')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-amqp")
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot animated banner smoke test'
|
||||
description = "Spring Boot animated banner smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
plugins {
|
||||
id 'org.springframework.boot.conventions'
|
||||
id 'java-base'
|
||||
id "org.springframework.boot.conventions"
|
||||
id "java-base"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Ant smoke test'
|
||||
description = "Spring Boot Ant smoke test"
|
||||
|
||||
configurations {
|
||||
antDependencies
|
||||
@@ -23,36 +23,36 @@ plugins.withType(EclipsePlugin) {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
antDependencies 'org.apache.ivy:ivy:2.4.0'
|
||||
antDependencies project(path: ':spring-boot-project:spring-boot-tools:spring-boot-antlib')
|
||||
antDependencies 'org.apache.ant:ant-launcher:1.9.3'
|
||||
antDependencies 'org.apache.ant:ant:1.9.3'
|
||||
antDependencies "org.apache.ivy:ivy:2.4.0"
|
||||
antDependencies project(path: ":spring-boot-project:spring-boot-tools:spring-boot-antlib")
|
||||
antDependencies "org.apache.ant:ant-launcher:1.9.3"
|
||||
antDependencies "org.apache.ant:ant:1.9.3"
|
||||
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-tools:spring-boot-loader', configuration: 'mavenRepository')
|
||||
testRepository project(path: ':spring-boot-project:spring-boot-starters:spring-boot-starter', configuration: 'mavenRepository')
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-tools:spring-boot-loader", configuration: "mavenRepository")
|
||||
testRepository project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter", configuration: "mavenRepository")
|
||||
|
||||
testImplementation platform(project(':spring-boot-project:spring-boot-dependencies'))
|
||||
testImplementation project(path: ':spring-boot-project:spring-boot-tools:spring-boot-loader-tools')
|
||||
testImplementation 'org.assertj:assertj-core'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||||
testImplementation 'org.springframework:spring-core'
|
||||
testImplementation platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||
testImplementation project(path: ":spring-boot-project:spring-boot-tools:spring-boot-loader-tools")
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||
testImplementation "org.springframework:spring-core"
|
||||
}
|
||||
|
||||
task syncTestRepository(type: Sync) {
|
||||
destinationDir = file("${buildDir}/test-repository")
|
||||
from configurations.testRepository
|
||||
rename {
|
||||
it.replaceAll('-[0-9]+\\.[0-9]+-[0-9]+\\.', '-SNAPSHOT.')
|
||||
it.replaceAll("-[0-9]+\\.[0-9]+-[0-9]+\\.", "-SNAPSHOT.")
|
||||
}
|
||||
}
|
||||
|
||||
task antRun(type: JavaExec) {
|
||||
dependsOn syncTestRepository, configurations.antDependencies
|
||||
classpath = configurations.antDependencies;
|
||||
main = 'org.apache.tools.ant.launch.Launcher'
|
||||
main = "org.apache.tools.ant.launch.Launcher"
|
||||
systemProperties = [
|
||||
'ant-spring-boot.version' : version,
|
||||
'projectDir': project.layout.projectDirectory
|
||||
"ant-spring-boot.version" : version,
|
||||
"projectDir": project.layout.projectDirectory
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot AOP smoke test'
|
||||
description = "Spring Boot AOP smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-aop')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
@@ -1,18 +1,18 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id 'org.springframework.boot.internal-dependency-management'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
id "org.springframework.boot.internal-dependency-management"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Atmosphere smoke test'
|
||||
description = "Spring Boot Atmosphere smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation 'org.atmosphere:atmosphere-runtime:2.4.14'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
implementation "org.atmosphere:atmosphere-runtime:2.4.14"
|
||||
|
||||
runtimeOnly 'org.webjars:atmosphere-javascript:2.3.4'
|
||||
runtimeOnly "org.webjars:atmosphere-javascript:2.3.4"
|
||||
|
||||
testImplementation enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies'))
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.springframework:spring-websocket'
|
||||
testImplementation enforcedPlatform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.springframework:spring-websocket"
|
||||
}
|
||||
@@ -1,13 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Batch smoke test'
|
||||
description = "Spring Boot Batch smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-batch')
|
||||
runtimeOnly 'org.hsqldb:hsqldb'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-batch")
|
||||
|
||||
runtimeOnly "org.hsqldb:hsqldb"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
@@ -1,46 +1,46 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot cache smoke test'
|
||||
description = "Spring Boot cache smoke test"
|
||||
|
||||
def caches = [
|
||||
'caffeine': [
|
||||
'com.github.ben-manes.caffeine:caffeine'
|
||||
"caffeine": [
|
||||
"com.github.ben-manes.caffeine:caffeine"
|
||||
],
|
||||
'couchbase': [
|
||||
'com.couchbase.client:java-client',
|
||||
'com.couchbase.client:couchbase-spring-cache'
|
||||
"couchbase": [
|
||||
"com.couchbase.client:java-client",
|
||||
"com.couchbase.client:couchbase-spring-cache"
|
||||
],
|
||||
'ehcache': [
|
||||
'javax.cache:cache-api',
|
||||
'org.ehcache:ehcache'
|
||||
"ehcache": [
|
||||
"javax.cache:cache-api",
|
||||
"org.ehcache:ehcache"
|
||||
],
|
||||
'ehcache2': [
|
||||
'net.sf.ehcache:ehcache'
|
||||
"ehcache2": [
|
||||
"net.sf.ehcache:ehcache"
|
||||
],
|
||||
'hazelcast': [
|
||||
'com.hazelcast:hazelcast',
|
||||
'com.hazelcast:hazelcast-spring'
|
||||
"hazelcast": [
|
||||
"com.hazelcast:hazelcast",
|
||||
"com.hazelcast:hazelcast-spring"
|
||||
],
|
||||
'infinispan': [
|
||||
'org.infinispan:infinispan-jcache',
|
||||
'org.infinispan:infinispan-spring5-embedded'
|
||||
"infinispan": [
|
||||
"org.infinispan:infinispan-jcache",
|
||||
"org.infinispan:infinispan-spring5-embedded"
|
||||
],
|
||||
'redis': [
|
||||
project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis')
|
||||
"redis": [
|
||||
project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis")
|
||||
]
|
||||
]
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-cache')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-cache")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
if (project.hasProperty('cache')) {
|
||||
caches[project.getProperty('cache')].each { runtimeOnly it }
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
|
||||
if (project.hasProperty("cache")) {
|
||||
caches[project.getProperty("cache")].each { runtimeOnly it }
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
}
|
||||
@@ -1,22 +1,22 @@
|
||||
buildscript {
|
||||
dependencies {
|
||||
classpath 'org.springframework:spring-core:5.2.2.RELEASE'
|
||||
classpath "org.springframework:spring-core:5.2.2.RELEASE"
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data Cassandra smoke test'
|
||||
description = "Spring Boot Data Cassandra smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-cassandra')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-cassandra")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation('org.cassandraunit:cassandra-unit-spring:3.5.0.1') {
|
||||
exclude group: 'org.slf4j', module: 'jcl-over-slf4j'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation("org.cassandraunit:cassandra-unit-spring:3.5.0.1") {
|
||||
exclude group: "org.slf4j", module: "jcl-over-slf4j"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data Couchbase smoke test'
|
||||
description = "Spring Boot Data Couchbase smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data Elasticsearch smoke test'
|
||||
description = "Spring Boot Data Elasticsearch smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-elasticsearch')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-elasticsearch")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data JDBC smoke test'
|
||||
description = "Spring Boot Data JDBC smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jdbc')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jdbc")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data JPA smoke test'
|
||||
description = "Spring Boot Data JPA smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data LDAP smoke test'
|
||||
description = "Spring Boot Data LDAP smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-ldap')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-ldap")
|
||||
|
||||
runtimeOnly 'com.unboundid:unboundid-ldapsdk'
|
||||
runtimeOnly "com.unboundid:unboundid-ldapsdk"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data MongoDB smoke test'
|
||||
description = "Spring Boot Data MongoDB smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb")
|
||||
|
||||
runtimeOnly 'de.flapdoodle.embed:de.flapdoodle.embed.mongo'
|
||||
runtimeOnly "de.flapdoodle.embed:de.flapdoodle.embed.mongo"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data Neo4j smoke test'
|
||||
description = "Spring Boot Data Neo4j smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-neo4j')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-neo4j")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data Redis smoke test'
|
||||
description = "Spring Boot Data Redis smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data REST smoke test'
|
||||
description = "Spring Boot Data REST smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa')
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-rest')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-rest")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
implementation 'com.h2database:h2'
|
||||
implementation "com.h2database:h2"
|
||||
|
||||
runtimeOnly project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jetty')
|
||||
runtimeOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
|
||||
testRuntimeOnly 'com.jayway.jsonpath:json-path'
|
||||
testRuntimeOnly "com.jayway.jsonpath:json-path"
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Data Solr smoke test'
|
||||
description = "Spring Boot Data Solr smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-solr')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-solr")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot DevTools smoke test'
|
||||
description = "Spring Boot DevTools smoke test"
|
||||
|
||||
configurations {
|
||||
developmentOnly
|
||||
@@ -11,10 +11,10 @@ configurations {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
developmentOnly project(':spring-boot-project:spring-boot-devtools')
|
||||
developmentOnly project(":spring-boot-project:spring-boot-devtools")
|
||||
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Flyway smoke test'
|
||||
description = "Spring Boot Flyway smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly 'org.flywaydb:flyway-core'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
runtimeOnly "org.flywaydb:flyway-core"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot HATEOAS smoke test'
|
||||
description = "Spring Boot HATEOAS smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-hateoas')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-hateoas")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Hibernate 5.2 smoke test'
|
||||
description = "Spring Boot Hibernate 5.2 smoke test"
|
||||
|
||||
configurations.all {
|
||||
resolutionStrategy {
|
||||
force 'org.hibernate:hibernate-core:5.2.17.Final'
|
||||
force "org.hibernate:hibernate-core:5.2.17.Final"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa')) {
|
||||
exclude group: 'org.hibernate.javax.persistence', module: 'hibernate-jpa-2.1-api'
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")) {
|
||||
exclude group: "org.hibernate.javax.persistence", module: "hibernate-jpa-2.1-api"
|
||||
}
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Integration smoke test'
|
||||
description = "Spring Boot Integration smoke test"
|
||||
|
||||
dependencies {
|
||||
annotationProcessor project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-processor')
|
||||
annotationProcessor project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-processor")
|
||||
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-integration')
|
||||
implementation 'org.springframework.integration:spring-integration-file'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-integration")
|
||||
implementation "org.springframework.integration:spring-integration-file"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.awaitility:awaitility'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.awaitility:awaitility"
|
||||
}
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Jersey smoke test'
|
||||
description = "Spring Boot Jersey smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jersey')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jersey")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
|
||||
if (JavaVersion.current().java9Compatible) {
|
||||
runtimeOnly 'jakarta.xml.bind:jakarta.xml.bind-api'
|
||||
runtimeOnly "jakarta.xml.bind:jakarta.xml.bind-api"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Jetty JSP smoke test'
|
||||
description = "Spring Boot Jetty JSP smoke test"
|
||||
|
||||
dependencies {
|
||||
compileOnly 'jakarta.servlet:jakarta.servlet-api'
|
||||
compileOnly project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jetty')
|
||||
compileOnly "jakarta.servlet:jakarta.servlet-api"
|
||||
compileOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
||||
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
providedRuntime platform(project(':spring-boot-project:spring-boot-dependencies'))
|
||||
providedRuntime('org.eclipse.jetty:apache-jsp') {
|
||||
exclude group: 'javax.annotation', module: 'javax.annotation-api'
|
||||
providedRuntime platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||
providedRuntime ("org.eclipse.jetty:apache-jsp") {
|
||||
exclude group: "javax.annotation", module: "javax.annotation-api"
|
||||
}
|
||||
|
||||
runtimeOnly 'javax.servlet:jstl'
|
||||
runtimeOnly "javax.servlet:jstl"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jetty')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Jetty SSL smoke test'
|
||||
description = "Spring Boot Jetty SSL smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jetty')
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
||||
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
|
||||
testRuntimeOnly 'org.apache.httpcomponents:httpclient'
|
||||
testRuntimeOnly "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Jetty smoke test'
|
||||
description = "Spring Boot Jetty smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jetty')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot JPA smoke test'
|
||||
description = "Spring Boot JPA smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation 'jakarta.persistence:jakarta.persistence-api'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
implementation "jakarta.persistence:jakarta.persistence-api"
|
||||
if (JavaVersion.current().java9Compatible) {
|
||||
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
||||
implementation "jakarta.xml.bind:jakarta.xml.bind-api"
|
||||
}
|
||||
implementation('org.hibernate:hibernate-core') {
|
||||
exclude group: 'javax.activation', module: 'javax.activation-api'
|
||||
exclude group: 'javax.persistence', module: 'javax.persistence-api'
|
||||
exclude group: 'javax.xml.bind', module: 'jaxb-api'
|
||||
implementation ("org.hibernate:hibernate-core") {
|
||||
exclude group: "javax.activation", module: "javax.activation-api"
|
||||
exclude group: "javax.persistence", module: "javax.persistence-api"
|
||||
exclude group: "javax.xml.bind", module: "jaxb-api"
|
||||
}
|
||||
implementation 'org.springframework:spring-orm'
|
||||
implementation "org.springframework:spring-orm"
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Atomikos JTA smoke test'
|
||||
description = "Spring Boot Atomikos JTA smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-artemis')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jta-atomikos')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-artemis")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jta-atomikos")
|
||||
if (JavaVersion.current().java9Compatible) {
|
||||
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
||||
implementation "jakarta.xml.bind:jakarta.xml.bind-api"
|
||||
}
|
||||
implementation 'org.springframework:spring-jms'
|
||||
implementation "org.springframework:spring-jms"
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly('org.apache.activemq:artemis-jms-server') {
|
||||
exclude group: 'org.apache.geronimo.specs', module: 'geronimo-jms_2.0_spec'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
runtimeOnly ("org.apache.activemq:artemis-jms-server") {
|
||||
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Bitronix JTA smoke test'
|
||||
description = "Spring Boot Bitronix JTA smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-artemis')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jta-bitronix')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-artemis")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jta-bitronix")
|
||||
if (JavaVersion.current().java9Compatible) {
|
||||
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
||||
implementation "jakarta.xml.bind:jakarta.xml.bind-api"
|
||||
}
|
||||
implementation 'org.springframework:spring-jms'
|
||||
implementation "org.springframework:spring-jms"
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly('org.apache.activemq:artemis-jms-server') {
|
||||
exclude group: 'org.apache.geronimo.specs', module: 'geronimo-jms_2.0_spec'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
runtimeOnly ("org.apache.activemq:artemis-jms-server") {
|
||||
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot JUnit Jupiter smoke test'
|
||||
description = "Spring Boot JUnit Jupiter smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')) {
|
||||
exclude group: 'org.junit.vintage'
|
||||
testImplementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) {
|
||||
exclude group: "org.junit.vintage"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ test {
|
||||
afterSuite { description, result ->
|
||||
if (!description.parent) {
|
||||
if (!result.testCount) {
|
||||
throw new GradleException('No tests were executed')
|
||||
throw new GradleException("No tests were executed")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot JUnit Vintage smoke test'
|
||||
description = "Spring Boot JUnit Vintage smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test'))
|
||||
testImplementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||
}
|
||||
|
||||
test {
|
||||
@@ -16,7 +16,7 @@ test {
|
||||
afterSuite { description, result ->
|
||||
if (!description.parent) {
|
||||
if (!result.testCount) {
|
||||
throw new GradleException('No tests were executed')
|
||||
throw new GradleException("No tests were executed")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Kafka smoke test'
|
||||
description = "Spring Boot Kafka smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-json')
|
||||
implementation 'org.springframework.kafka:spring-kafka'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json")
|
||||
implementation "org.springframework.kafka:spring-kafka"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.awaitility:awaitility'
|
||||
testImplementation 'org.springframework.kafka:spring-kafka-test'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.awaitility:awaitility"
|
||||
testImplementation "org.springframework.kafka:spring-kafka-test"
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Liquibase smoke test'
|
||||
description = "Spring Boot Liquibase smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation 'org.liquibase:liquibase-core'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
implementation "org.liquibase:liquibase-core"
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Logback smoke test'
|
||||
description = "Spring Boot Logback smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot OAuth2 Client smoke test'
|
||||
description = "Spring Boot OAuth2 Client smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-client')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-client")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot OAuth2 Resource Server smoke test'
|
||||
description = "Spring Boot OAuth2 Resource Server smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-resource-server')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-resource-server")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'com.squareup.okhttp3:mockwebserver:3.9.0'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "com.squareup.okhttp3:mockwebserver:3.9.0"
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot parent context smoke test'
|
||||
description = "Spring Boot parent context smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-integration')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation 'org.springframework.integration:spring-integration-file'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-integration")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation "org.springframework.integration:spring-integration-file"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.awaitility:awaitility'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.awaitility:awaitility"
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot profile smoke test'
|
||||
description = "Spring Boot profile smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot property validation smoke test'
|
||||
description = "Spring Boot property validation smoke test"
|
||||
|
||||
dependencies {
|
||||
annotationProcessor project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-processor')
|
||||
annotationProcessor project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-processor")
|
||||
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Quartz smoke test'
|
||||
description = "Spring Boot Quartz smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-quartz')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-quartz")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.awaitility:awaitility'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.awaitility:awaitility"
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot reactive OAuth 2 client smoke test'
|
||||
description = "Spring Boot reactive OAuth 2 client smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-client')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-webflux')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-client")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot reactive OAuth 2 resource server smoke test'
|
||||
description = "Spring Boot reactive OAuth 2 resource server smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-resource-server')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-webflux')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-oauth2-resource-server")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'com.squareup.okhttp3:mockwebserver:3.9.0'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "com.squareup.okhttp3:mockwebserver:3.9.0"
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot RSocket smoke test'
|
||||
description = "Spring Boot RSocket smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-rsocket')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation 'org.springframework.security:spring-security-rsocket'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-rsocket")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation "org.springframework.security:spring-security-rsocket"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "io.projectreactor:reactor-test"
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot SAML 2 service provider smoke test'
|
||||
description = "Spring Boot SAML 2 service provider smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation 'org.springframework.security:spring-security-config'
|
||||
implementation 'org.springframework.security:spring-security-saml2-service-provider'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
implementation "org.springframework.security:spring-security-config"
|
||||
implementation "org.springframework.security:spring-security-saml2-service-provider"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot secure Jersey smoke test'
|
||||
description = "Spring Boot secure Jersey smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jersey')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation 'org.jolokia:jolokia-core'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jersey")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation "org.jolokia:jolokia-core"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot secure WebFlux smoke test'
|
||||
description = "Spring Boot secure WebFlux smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-webflux')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "io.projectreactor:reactor-test"
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Security smoke test'
|
||||
description = "Spring Boot Security smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Servlet smoke test'
|
||||
description = "Spring Boot Servlet smoke test"
|
||||
|
||||
dependencies {
|
||||
compileOnly project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
compileOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
|
||||
testRuntimeOnly project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
testRuntimeOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
}
|
||||
|
||||
@@ -1,27 +1,27 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Session WebFlux smoke test'
|
||||
description = "Spring Boot Session WebFlux smoke test"
|
||||
|
||||
def sessionStores = [
|
||||
'mongodb': [
|
||||
project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb-reactive'),
|
||||
'de.flapdoodle.embed:de.flapdoodle.embed.mongo',
|
||||
'org.springframework.session:spring-session-data-mongodb'
|
||||
"mongodb": [
|
||||
project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb-reactive"),
|
||||
"de.flapdoodle.embed:de.flapdoodle.embed.mongo",
|
||||
"org.springframework.session:spring-session-data-mongodb"
|
||||
],
|
||||
'redis': [
|
||||
project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis-reactive'),
|
||||
'org.springframework.session:spring-session-data-redis'
|
||||
"redis": [
|
||||
project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis-reactive"),
|
||||
"org.springframework.session:spring-session-data-redis"
|
||||
]
|
||||
]
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-webflux')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux")
|
||||
|
||||
sessionStores[project.findProperty('sessionStore') ?: 'mongodb'].each { runtimeOnly it }
|
||||
sessionStores[project.findProperty("sessionStore") ?: "mongodb"].each { runtimeOnly it }
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,36 +1,36 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Session smoke test'
|
||||
description = "Spring Boot Session smoke test"
|
||||
|
||||
def sessionStores = [
|
||||
'hazelcast': [
|
||||
'com.hazelcast:hazelcast',
|
||||
'org.springframework.session:spring-session-hazelcast'
|
||||
"hazelcast": [
|
||||
"com.hazelcast:hazelcast",
|
||||
"org.springframework.session:spring-session-hazelcast"
|
||||
],
|
||||
'jdbc': [
|
||||
project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc'),
|
||||
'org.springframework.session:spring-session-jdbc' ,
|
||||
'com.h2database:h2'
|
||||
"jdbc": [
|
||||
project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc"),
|
||||
"org.springframework.session:spring-session-jdbc" ,
|
||||
"com.h2database:h2"
|
||||
],
|
||||
'mongodb': [
|
||||
project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb'),
|
||||
'org.springframework.session:spring-session-data-mongodb'
|
||||
"mongodb": [
|
||||
project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-mongodb"),
|
||||
"org.springframework.session:spring-session-data-mongodb"
|
||||
],
|
||||
'redis': [
|
||||
project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis'),
|
||||
'org.springframework.session:spring-session-data-redis'
|
||||
"redis": [
|
||||
project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis"),
|
||||
"org.springframework.session:spring-session-data-redis"
|
||||
]
|
||||
]
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
sessionStores[project.findProperty('sessionStore') ?: 'jdbc'].each { runtimeOnly it }
|
||||
sessionStores[project.findProperty("sessionStore") ?: "jdbc"].each { runtimeOnly it }
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Simple smoke test'
|
||||
description = "Spring Boot Simple smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation 'jakarta.validation:jakarta.validation-api'
|
||||
implementation('org.hibernate.validator:hibernate-validator') {
|
||||
exclude group: 'javax.validation'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
implementation "jakarta.validation:jakarta.validation-api"
|
||||
implementation ("org.hibernate.validator:hibernate-validator") {
|
||||
exclude group: "javax.validation"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Test no Mockito smoke test'
|
||||
description = "Spring Boot Test no Mockito smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-test')
|
||||
testImplementation 'org.assertj:assertj-core'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||||
testImplementation 'org.springframework:spring-test'
|
||||
testImplementation project(":spring-boot-project:spring-boot-test")
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||
testImplementation "org.springframework:spring-test"
|
||||
}
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Test smoke test'
|
||||
description = "Spring Boot Test smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.seleniumhq.selenium:selenium-api'
|
||||
testImplementation 'org.seleniumhq.selenium:htmlunit-driver'
|
||||
testImplementation 'net.sourceforge.htmlunit:htmlunit'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.seleniumhq.selenium:selenium-api"
|
||||
testImplementation "org.seleniumhq.selenium:htmlunit-driver"
|
||||
testImplementation "net.sourceforge.htmlunit:htmlunit"
|
||||
}
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
// id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
// id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot TestNG smoke test'
|
||||
description = "Spring Boot TestNG smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
implementation 'org.springframework:spring-webmvc'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
implementation "org.springframework:spring-webmvc"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-test')
|
||||
testImplementation 'org.assertj:assertj-core'
|
||||
testImplementation 'org.springframework:spring-test'
|
||||
testImplementation 'org.testng:testng:6.8.13'
|
||||
testImplementation project(":spring-boot-project:spring-boot-test")
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
testImplementation "org.springframework:spring-test"
|
||||
testImplementation "org.testng:testng:6.8.13"
|
||||
}
|
||||
|
||||
test {
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Tomcat JSP smoke test'
|
||||
description = "Spring Boot Tomcat JSP smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
providedRuntime project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
providedRuntime 'javax.servlet:jstl'
|
||||
providedRuntime 'org.apache.tomcat.embed:tomcat-embed-jasper'
|
||||
providedRuntime project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
providedRuntime "javax.servlet:jstl"
|
||||
providedRuntime "org.apache.tomcat.embed:tomcat-embed-jasper"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Tomcat multi-connectors smoke test'
|
||||
description = "Spring Boot Tomcat multi-connectors smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Tomcat SSL smoke test'
|
||||
description = "Spring Boot Tomcat SSL smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Tomcat smoke test'
|
||||
description = "Spring Boot Tomcat smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
implementation 'org.springframework:spring-webmvc'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
implementation "org.springframework:spring-webmvc"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot traditional deployment smoke test'
|
||||
description = "Spring Boot traditional deployment smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation 'org.springframework:spring-webmvc'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
implementation "org.springframework:spring-webmvc"
|
||||
|
||||
providedRuntime project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
providedRuntime 'org.apache.tomcat.embed:tomcat-embed-jasper'
|
||||
providedRuntime project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
providedRuntime "org.apache.tomcat.embed:tomcat-embed-jasper"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Undertow SSL smoke test'
|
||||
description = "Spring Boot Undertow SSL smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-undertow')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-undertow")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Undertow smoke test'
|
||||
description = "Spring Boot Undertow smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-undertow')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-undertow")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot war smoke test'
|
||||
description = "Spring Boot war smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
providedCompile platform(project(':spring-boot-project:spring-boot-dependencies'))
|
||||
providedCompile 'jakarta.servlet:jakarta.servlet-api'
|
||||
providedCompile platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||
providedCompile "jakarta.servlet:jakarta.servlet-api"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web FreeMarker smoke test'
|
||||
description = "Spring Boot web FreeMarker smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-freemarker")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web Groovy Templates smoke test'
|
||||
description = "Spring Boot web Groovy Templates smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-groovy-templates')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-validation')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-groovy-templates")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-validation")
|
||||
if (JavaVersion.current().java9Compatible) {
|
||||
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
||||
implementation "jakarta.xml.bind:jakarta.xml.bind-api"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web JSP smoke test'
|
||||
description = "Spring Boot web JSP smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
providedRuntime project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
providedRuntime 'javax.servlet:jstl'
|
||||
providedRuntime 'org.apache.tomcat.embed:tomcat-embed-jasper'
|
||||
providedRuntime project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
providedRuntime "javax.servlet:jstl"
|
||||
providedRuntime "org.apache.tomcat.embed:tomcat-embed-jasper"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web method security smoke test'
|
||||
description = "Spring Boot web method security smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web Mustache smoke test'
|
||||
description = "Spring Boot web Mustache smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-mustache')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-mustache")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web secure custom smoke test'
|
||||
description = "Spring Boot web secure custom smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web secure JDBC smoke test'
|
||||
description = "Spring Boot web secure JDBC smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
runtimeOnly 'com.h2database:h2'
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web secure smoke test'
|
||||
description = "Spring Boot web secure smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'org.apache.httpcomponents:httpclient'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "org.apache.httpcomponents:httpclient"
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
plugins {
|
||||
id 'war'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "war"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web static smoke test'
|
||||
description = "Spring Boot web static smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
|
||||
providedRuntime project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
||||
providedRuntime project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||
|
||||
runtimeOnly 'org.webjars:bootstrap:3.0.3'
|
||||
runtimeOnly 'org.webjars:jquery:2.0.3-1'
|
||||
runtimeOnly "org.webjars:bootstrap:3.0.3"
|
||||
runtimeOnly "org.webjars:jquery:2.0.3-1"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot web UI smoke test'
|
||||
description = "Spring Boot web UI smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-validation')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-validation")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,30 +1,30 @@
|
||||
plugins {
|
||||
id 'org.jetbrains.kotlin.jvm'
|
||||
id 'org.jetbrains.kotlin.plugin.spring'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "org.jetbrains.kotlin.jvm"
|
||||
id "org.jetbrains.kotlin.plugin.spring"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot WebFlux coroutines smoke test'
|
||||
description = "Spring Boot WebFlux coroutines smoke test"
|
||||
|
||||
compileKotlin {
|
||||
kotlinOptions {
|
||||
jvmTarget = '1.8'
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
|
||||
compileTestKotlin {
|
||||
kotlinOptions {
|
||||
jvmTarget = '1.8'
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-webflux')
|
||||
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin'
|
||||
implementation 'org.jetbrains.kotlin:kotlin-reflect'
|
||||
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
|
||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-reactor'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux")
|
||||
implementation "com.fasterxml.jackson.module:jackson-module-kotlin"
|
||||
implementation "org.jetbrains.kotlin:kotlin-reflect"
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-reactor"
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "io.projectreactor:reactor-test"
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot WebFlux smoke test'
|
||||
description = "Spring Boot WebFlux smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-webflux')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation "io.projectreactor:reactor-test"
|
||||
}
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot Web Services smoke test'
|
||||
description = "Spring Boot Web Services smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web-services')
|
||||
implementation 'org.jdom:jdom2'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web-services")
|
||||
implementation "org.jdom:jdom2"
|
||||
|
||||
runtimeOnly 'jaxen:jaxen'
|
||||
runtimeOnly 'wsdl4j:wsdl4j'
|
||||
runtimeOnly "jaxen:jaxen"
|
||||
runtimeOnly "wsdl4j:wsdl4j"
|
||||
if (JavaVersion.current().java11Compatible) {
|
||||
runtimeOnly 'jakarta.activation:jakarta.activation-api'
|
||||
runtimeOnly 'org.glassfish.jaxb:jaxb-runtime'
|
||||
runtimeOnly "jakarta.activation:jakarta.activation-api"
|
||||
runtimeOnly "org.glassfish.jaxb:jaxb-runtime"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot WebSocket Jetty smoke test'
|
||||
description = "Spring Boot WebSocket Jetty smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jetty')
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-websocket')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
||||
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-websocket")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot WebSocket Tomcat smoke test'
|
||||
description = "Spring Boot WebSocket Tomcat smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-websocket')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-websocket")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot WebSocket Undertow smoke test'
|
||||
description = "Spring Boot WebSocket Undertow smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-undertow')
|
||||
implementation(project(':spring-boot-project:spring-boot-starters:spring-boot-starter-websocket')) {
|
||||
exclude module: 'spring-boot-starter-tomcat'
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-undertow")
|
||||
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-websocket")) {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot.conventions'
|
||||
id "java"
|
||||
id "org.springframework.boot.conventions"
|
||||
}
|
||||
|
||||
description = 'Spring Boot XML smoke test'
|
||||
description = "Spring Boot XML smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||
|
||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user