Use parentheses when declaring dependencies
Update all dependencies declarations to use the form `scope(reference)` rather than `scope reference`. Prior to this commit we declared dependencies without parentheses unless we were forced to add them due to an `exclude`.
This commit is contained in:
@@ -7,21 +7,21 @@ plugins {
|
||||
description = "Spring Boot Deployment Tests"
|
||||
|
||||
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")) {
|
||||
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(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")
|
||||
|
||||
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 {
|
||||
|
||||
@@ -6,12 +6,12 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
@@ -13,7 +13,7 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation("org.springframework.boot:spring-boot-starter-web")
|
||||
}
|
||||
|
||||
bootJar {
|
||||
|
||||
@@ -14,10 +14,10 @@ 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")
|
||||
|
||||
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) {
|
||||
|
||||
@@ -10,27 +10,27 @@ 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(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) {
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
@@ -6,14 +6,14 @@ plugins {
|
||||
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")
|
||||
}
|
||||
@@ -10,11 +10,11 @@ configurations.all {
|
||||
}
|
||||
|
||||
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"))
|
||||
}
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
@@ -6,14 +6,14 @@ plugins {
|
||||
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")
|
||||
}
|
||||
@@ -6,5 +6,5 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
@@ -6,5 +6,5 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
@@ -28,14 +28,14 @@ dependencies {
|
||||
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) {
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
@@ -7,12 +7,12 @@ plugins {
|
||||
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")
|
||||
}
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
description = "Spring Boot Batch smoke test"
|
||||
|
||||
dependencies {
|
||||
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-batch")
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-batch"))
|
||||
|
||||
runtimeOnly "org.hsqldb:hsqldb"
|
||||
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"))
|
||||
}
|
||||
@@ -34,11 +34,11 @@ def caches = [
|
||||
]
|
||||
|
||||
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"))
|
||||
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||
|
||||
if (project.hasProperty("cache")) {
|
||||
caches[project.getProperty("cache")].each { runtimeOnly it }
|
||||
|
||||
@@ -12,9 +12,9 @@ plugins {
|
||||
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(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"
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,15 +6,15 @@ plugins {
|
||||
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-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")
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -13,8 +13,8 @@ configurations {
|
||||
dependencies {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,12 +6,12 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ dependencies {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,13 +6,13 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,20 +6,20 @@ plugins {
|
||||
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"
|
||||
}
|
||||
|
||||
providedRuntime platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||
providedRuntime ("org.eclipse.jetty:apache-jsp") {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,12 +6,12 @@ plugins {
|
||||
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")) {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
description = "Spring Boot Jetty 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")) {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,20 +6,20 @@ plugins {
|
||||
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") {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,18 +6,18 @@ plugins {
|
||||
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") {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,18 +6,18 @@ plugins {
|
||||
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") {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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")) {
|
||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) {
|
||||
exclude group: "org.junit.vintage"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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 {
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,12 +6,12 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -18,10 +18,10 @@ def sessionStores = [
|
||||
]
|
||||
|
||||
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 }
|
||||
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||
}
|
||||
|
||||
@@ -26,11 +26,11 @@ def sessionStores = [
|
||||
]
|
||||
|
||||
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 }
|
||||
|
||||
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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") {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,13 +6,13 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,13 +6,13 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,14 +6,14 @@ plugins {
|
||||
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 {
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,12 +6,12 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
description = "Spring Boot Undertow 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")) {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ 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-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"))
|
||||
}
|
||||
|
||||
@@ -6,12 +6,12 @@ plugins {
|
||||
description = "Spring Boot war 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")) {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,13 +6,13 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,12 +6,12 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -19,12 +19,12 @@ compileTestKotlin {
|
||||
}
|
||||
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ plugins {
|
||||
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")
|
||||
}
|
||||
|
||||
@@ -6,15 +6,15 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")) {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ plugins {
|
||||
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")) {
|
||||
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"))
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
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