You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
5.4 KiB
119 lines
5.4 KiB
plugins { |
|
id "java-library" |
|
id "org.springframework.boot.configuration-properties" |
|
id "org.springframework.boot.optional-dependencies" |
|
id "org.springframework.boot.docker-test" |
|
id "org.springframework.boot.deployed" |
|
} |
|
|
|
description = "Spring Boot Actuator" |
|
|
|
dependencies { |
|
api(project(":spring-boot-project:spring-boot")) |
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-autoconfigure")) |
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test")) |
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker")) |
|
dockerTestImplementation("org.assertj:assertj-core") |
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter") |
|
dockerTestImplementation("org.springframework:spring-test") |
|
dockerTestImplementation("org.testcontainers:junit-jupiter") |
|
dockerTestImplementation("org.testcontainers:mongodb") |
|
dockerTestImplementation("org.testcontainers:neo4j") |
|
dockerTestImplementation("org.testcontainers:testcontainers") |
|
|
|
optional("com.datastax.oss:java-driver-core") { |
|
exclude group: "org.slf4j", module: "jcl-over-slf4j" |
|
} |
|
optional("com.fasterxml.jackson.core:jackson-databind") |
|
optional("com.fasterxml.jackson.datatype:jackson-datatype-jsr310") |
|
optional("com.github.ben-manes.caffeine:caffeine") |
|
optional("com.hazelcast:hazelcast") |
|
optional("com.hazelcast:hazelcast-spring") |
|
optional("com.zaxxer:HikariCP") |
|
optional("io.lettuce:lettuce-core") |
|
optional("io.micrometer:micrometer-observation") |
|
optional("io.micrometer:micrometer-jakarta9") |
|
optional("io.micrometer:micrometer-tracing") |
|
optional("io.micrometer:micrometer-registry-prometheus") |
|
optional("io.prometheus:simpleclient_pushgateway") { |
|
exclude(group: "javax.xml.bind", module: "jaxb-api") |
|
} |
|
optional("io.r2dbc:r2dbc-pool") |
|
optional("io.r2dbc:r2dbc-spi") |
|
optional("io.undertow:undertow-servlet") |
|
optional("javax.cache:cache-api") |
|
optional("jakarta.jms:jakarta.jms-api") |
|
optional("org.apache.tomcat.embed:tomcat-embed-core") |
|
optional("org.aspectj:aspectjweaver") |
|
optional("org.cache2k:cache2k-micrometer") |
|
optional("org.cache2k:cache2k-spring") |
|
optional("org.eclipse.angus:angus-mail") |
|
optional("org.eclipse.jetty:jetty-server") { |
|
exclude(group: "org.eclipse.jetty.toolchain", module: "jetty-jakarta-servlet-api") |
|
} |
|
optional("org.elasticsearch.client:elasticsearch-rest-client") { |
|
exclude(group: "commons-logging", module: "commons-logging") |
|
} |
|
optional("org.flywaydb:flyway-core") |
|
optional("org.glassfish.jersey.core:jersey-server") |
|
optional("org.glassfish.jersey.containers:jersey-container-servlet-core") |
|
optional("org.hibernate.validator:hibernate-validator") |
|
optional("org.influxdb:influxdb-java") |
|
optional("org.liquibase:liquibase-core") { |
|
exclude(group: "javax.xml.bind", module: "jaxb-api") |
|
} |
|
optional("org.mongodb:mongodb-driver-reactivestreams") |
|
optional("org.mongodb:mongodb-driver-sync") |
|
optional("org.neo4j.driver:neo4j-java-driver") |
|
optional("org.quartz-scheduler:quartz") |
|
optional("org.springframework:spring-jdbc") |
|
optional("org.springframework:spring-messaging") |
|
optional("org.springframework:spring-webflux") |
|
optional("org.springframework:spring-web") |
|
optional("org.springframework:spring-webmvc") |
|
optional("org.springframework.graphql:spring-graphql") |
|
optional("org.springframework.amqp:spring-rabbit") |
|
optional("org.springframework.data:spring-data-cassandra") { |
|
exclude group: "org.slf4j", module: "jcl-over-slf4j" |
|
} |
|
optional("org.springframework.data:spring-data-couchbase") |
|
optional("org.springframework.data:spring-data-elasticsearch") { |
|
exclude(group: "commons-logging", module: "commons-logging") |
|
} |
|
optional("org.springframework.data:spring-data-ldap") |
|
optional("org.springframework.data:spring-data-mongodb") |
|
optional("org.springframework.data:spring-data-redis") |
|
optional("org.springframework.data:spring-data-rest-webmvc") |
|
optional("org.springframework.integration:spring-integration-core") |
|
optional("org.springframework.security:spring-security-core") |
|
optional("org.springframework.security:spring-security-web") |
|
optional("org.springframework.session:spring-session-core") |
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test")) |
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")) |
|
testImplementation(project(":spring-boot-project:spring-boot-autoconfigure")) |
|
testImplementation("org.assertj:assertj-core") |
|
testImplementation("com.jayway.jsonpath:json-path") |
|
testImplementation("io.micrometer:micrometer-observation-test") |
|
testImplementation("io.projectreactor:reactor-test") |
|
testImplementation("io.r2dbc:r2dbc-h2") |
|
testImplementation("net.minidev:json-smart") |
|
testImplementation("org.apache.logging.log4j:log4j-to-slf4j") |
|
testImplementation("org.awaitility:awaitility") |
|
testImplementation("org.glassfish.jersey.media:jersey-media-json-jackson") |
|
testImplementation("org.hamcrest:hamcrest") |
|
testImplementation("org.junit.jupiter:junit-jupiter") |
|
testImplementation("org.mockito:mockito-core") |
|
testImplementation("org.mockito:mockito-junit-jupiter") |
|
testImplementation("org.skyscreamer:jsonassert") |
|
testImplementation("org.springframework:spring-test") |
|
testImplementation("com.squareup.okhttp3:mockwebserver") |
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic") |
|
testRuntimeOnly("io.projectreactor.netty:reactor-netty-http") |
|
testRuntimeOnly("jakarta.xml.bind:jakarta.xml.bind-api") |
|
testRuntimeOnly("org.apache.tomcat.embed:tomcat-embed-el") |
|
testRuntimeOnly("org.glassfish.jersey.ext:jersey-spring6") |
|
testRuntimeOnly("org.hsqldb:hsqldb") |
|
}
|
|
|