71 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Groovy
		
	
	
	
| /*
 | |
|  * Copyright 2012-present the original author or authors.
 | |
|  *
 | |
|  * Licensed under the Apache License, Version 2.0 (the License);
 | |
|  * you may not use this file except in compliance with the License.
 | |
|  * You may obtain a copy of the License at
 | |
|  *
 | |
|  *      https://www.apache.org/licenses/LICENSE-2.0
 | |
|  *
 | |
|  * Unless required by applicable law or agreed to in writing, software
 | |
|  * distributed under the License is distributed on an "AS IS" BASIS,
 | |
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|  * See the License for the specific language governing permissions and
 | |
|  * limitations under the License.
 | |
|  */
 | |
| 
 | |
| plugins {
 | |
| 	id "java-library"
 | |
| 	id "org.springframework.boot.configuration-properties"
 | |
| 	id "org.springframework.boot.deployed"
 | |
| 	id "org.springframework.boot.docker-test"
 | |
| 	id "org.springframework.boot.optional-dependencies"
 | |
| }
 | |
| 
 | |
| description = "Spring Boot Docker Compose Support"
 | |
| 
 | |
| dependencies {
 | |
| 	api(project(":spring-boot-project:spring-boot-all"))
 | |
| 
 | |
| 	dockerTestImplementation(project(":spring-boot-project:spring-boot-jdbc"))
 | |
| 	dockerTestImplementation(project(":spring-boot-project:spring-boot-flyway"))
 | |
| 	dockerTestImplementation(project(":spring-boot-project:spring-boot-liquibase"))
 | |
| 	dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
 | |
| 	dockerTestImplementation("com.hazelcast:hazelcast")
 | |
| 	dockerTestImplementation("com.redis:testcontainers-redis")
 | |
| 	dockerTestImplementation("org.assertj:assertj-core")
 | |
| 	dockerTestImplementation("org.awaitility:awaitility")
 | |
| 	dockerTestImplementation("org.junit.jupiter:junit-jupiter")
 | |
| 	dockerTestImplementation("org.testcontainers:testcontainers")
 | |
| 
 | |
| 	dockerTestRuntimeOnly("com.clickhouse:clickhouse-jdbc")
 | |
| 	dockerTestRuntimeOnly("com.clickhouse:clickhouse-r2dbc")
 | |
| 	dockerTestRuntimeOnly("com.microsoft.sqlserver:mssql-jdbc")
 | |
| 	dockerTestRuntimeOnly("com.oracle.database.r2dbc:oracle-r2dbc")
 | |
| 	dockerTestRuntimeOnly("io.r2dbc:r2dbc-mssql")
 | |
| 	dockerTestRuntimeOnly("org.postgresql:postgresql")
 | |
| 	dockerTestRuntimeOnly("org.postgresql:r2dbc-postgresql")
 | |
| 
 | |
| 	implementation("com.fasterxml.jackson.core:jackson-databind")
 | |
| 	implementation("com.fasterxml.jackson.module:jackson-module-parameter-names")
 | |
| 
 | |
| 	optional(project(":spring-boot-project:spring-boot-activemq"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-amqp"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-artemis"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-autoconfigure-all"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-elasticsearch"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-flyway"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-jdbc"))
 | |
| 	optional(project(":spring-boot-project:spring-boot-liquibase"))
 | |
| 	optional("com.hazelcast:hazelcast")
 | |
| 	optional("io.r2dbc:r2dbc-spi")
 | |
| 	optional("org.mongodb:mongodb-driver-core")
 | |
| 	optional("org.neo4j.driver:neo4j-java-driver")
 | |
| 	optional("org.springframework.data:spring-data-r2dbc")
 | |
| 
 | |
| 	testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
 | |
| 	testImplementation(project(":spring-boot-project:spring-boot-test"))
 | |
| 	testImplementation("ch.qos.logback:logback-classic")
 | |
| }
 |