|
| 1 | +plugins { |
| 2 | + id "java-library" |
| 3 | + id "org.springframework.boot.optional-dependencies" |
| 4 | + id "org.springframework.boot.docker-test" |
| 5 | + id "org.springframework.boot.deployed" |
| 6 | +} |
| 7 | + |
| 8 | +description = "Spring Boot Actuator All" |
| 9 | + |
| 10 | +dependencies { |
| 11 | + api(project(":spring-boot-project:spring-boot-all")) |
| 12 | + api(project(":spring-boot-project:spring-boot-actuator")) |
| 13 | + |
| 14 | + dockerTestImplementation(project(":spring-boot-project:spring-boot-autoconfigure-all")) |
| 15 | + dockerTestImplementation(project(":spring-boot-project:spring-boot-test")) |
| 16 | + dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker")) |
| 17 | + dockerTestImplementation("com.redis:testcontainers-redis") |
| 18 | + dockerTestImplementation("org.assertj:assertj-core") |
| 19 | + dockerTestImplementation("org.junit.jupiter:junit-jupiter") |
| 20 | + dockerTestImplementation("org.springframework:spring-test") |
| 21 | + dockerTestImplementation("org.testcontainers:junit-jupiter") |
| 22 | + dockerTestImplementation("org.testcontainers:mongodb") |
| 23 | + dockerTestImplementation("org.testcontainers:neo4j") |
| 24 | + dockerTestImplementation("org.testcontainers:testcontainers") |
| 25 | + |
| 26 | + optional(project(":spring-boot-project:spring-boot-tomcat")) |
| 27 | + optional("org.apache.cassandra:java-driver-core") { |
| 28 | + exclude group: "org.slf4j", module: "jcl-over-slf4j" |
| 29 | + } |
| 30 | + optional("com.fasterxml.jackson.core:jackson-databind") |
| 31 | + optional("com.fasterxml.jackson.datatype:jackson-datatype-jsr310") |
| 32 | + optional("com.github.ben-manes.caffeine:caffeine") |
| 33 | + optional("com.hazelcast:hazelcast") |
| 34 | + optional("com.hazelcast:hazelcast-spring") |
| 35 | + optional("com.zaxxer:HikariCP") |
| 36 | + optional("io.lettuce:lettuce-core") |
| 37 | + optional("io.micrometer:micrometer-observation") |
| 38 | + optional("io.micrometer:micrometer-jakarta9") |
| 39 | + optional("io.micrometer:micrometer-tracing") |
| 40 | + optional("io.micrometer:micrometer-registry-prometheus") |
| 41 | + optional("io.micrometer:micrometer-registry-prometheus-simpleclient") |
| 42 | + optional("io.prometheus:prometheus-metrics-exposition-formats") |
| 43 | + optional("io.prometheus:prometheus-metrics-exporter-pushgateway") |
| 44 | + optional("io.r2dbc:r2dbc-pool") |
| 45 | + optional("io.r2dbc:r2dbc-spi") |
| 46 | + optional("io.undertow:undertow-servlet") |
| 47 | + optional("javax.cache:cache-api") |
| 48 | + optional("jakarta.jms:jakarta.jms-api") |
| 49 | + optional("org.apache.tomcat.embed:tomcat-embed-core") |
| 50 | + optional("org.aspectj:aspectjweaver") |
| 51 | + optional("org.cache2k:cache2k-micrometer") |
| 52 | + optional("org.cache2k:cache2k-spring") |
| 53 | + optional("org.eclipse.angus:angus-mail") |
| 54 | + optional("org.eclipse.jetty:jetty-server") { |
| 55 | + exclude(group: "org.eclipse.jetty.toolchain", module: "jetty-jakarta-servlet-api") |
| 56 | + } |
| 57 | + optional("org.elasticsearch.client:elasticsearch-rest-client") { |
| 58 | + exclude(group: "commons-logging", module: "commons-logging") |
| 59 | + } |
| 60 | + optional("org.flywaydb:flyway-core") |
| 61 | + optional("org.glassfish.jersey.core:jersey-server") |
| 62 | + optional("org.glassfish.jersey.containers:jersey-container-servlet-core") |
| 63 | + optional("org.hibernate.validator:hibernate-validator") |
| 64 | + optional("org.influxdb:influxdb-java") |
| 65 | + optional("org.liquibase:liquibase-core") { |
| 66 | + exclude(group: "javax.xml.bind", module: "jaxb-api") |
| 67 | + } |
| 68 | + optional("org.mongodb:mongodb-driver-reactivestreams") |
| 69 | + optional("org.mongodb:mongodb-driver-sync") |
| 70 | + optional("org.neo4j.driver:neo4j-java-driver") |
| 71 | + optional("org.quartz-scheduler:quartz") |
| 72 | + optional("org.springframework:spring-jdbc") |
| 73 | + optional("org.springframework:spring-messaging") |
| 74 | + optional("org.springframework:spring-webflux") |
| 75 | + optional("org.springframework:spring-web") |
| 76 | + optional("org.springframework:spring-webmvc") |
| 77 | + optional("org.springframework.graphql:spring-graphql") |
| 78 | + optional("org.springframework.amqp:spring-rabbit") |
| 79 | + optional("org.springframework.data:spring-data-cassandra") { |
| 80 | + exclude group: "org.slf4j", module: "jcl-over-slf4j" |
| 81 | + } |
| 82 | + optional("org.springframework.data:spring-data-couchbase") |
| 83 | + optional("org.springframework.data:spring-data-elasticsearch") { |
| 84 | + exclude(group: "commons-logging", module: "commons-logging") |
| 85 | + } |
| 86 | + optional("org.springframework.data:spring-data-ldap") |
| 87 | + optional("org.springframework.data:spring-data-mongodb") |
| 88 | + optional("org.springframework.data:spring-data-redis") |
| 89 | + optional("org.springframework.data:spring-data-rest-webmvc") |
| 90 | + optional("org.springframework.integration:spring-integration-core") |
| 91 | + optional("org.springframework.security:spring-security-core") |
| 92 | + optional("org.springframework.security:spring-security-web") |
| 93 | + optional("org.springframework.session:spring-session-core") |
| 94 | + |
| 95 | + testImplementation(project(":spring-boot-project:spring-boot-test")) |
| 96 | + testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")) |
| 97 | + testImplementation(project(":spring-boot-project:spring-boot-autoconfigure-all")) |
| 98 | + testImplementation(testFixtures(project(":spring-boot-project:spring-boot-actuator"))) |
| 99 | + testImplementation("org.assertj:assertj-core") |
| 100 | + testImplementation("com.jayway.jsonpath:json-path") |
| 101 | + testImplementation("io.micrometer:micrometer-observation-test") |
| 102 | + testImplementation("io.projectreactor:reactor-test") |
| 103 | + testImplementation("io.r2dbc:r2dbc-h2") |
| 104 | + testImplementation("net.minidev:json-smart") |
| 105 | + testImplementation("org.apache.logging.log4j:log4j-to-slf4j") |
| 106 | + testImplementation("org.awaitility:awaitility") |
| 107 | + testImplementation("org.glassfish.jersey.media:jersey-media-json-jackson") |
| 108 | + testImplementation("org.hamcrest:hamcrest") |
| 109 | + testImplementation("org.junit.jupiter:junit-jupiter") |
| 110 | + testImplementation("org.mockito:mockito-core") |
| 111 | + testImplementation("org.mockito:mockito-junit-jupiter") |
| 112 | + testImplementation("org.skyscreamer:jsonassert") |
| 113 | + testImplementation("org.springframework:spring-test") |
| 114 | + testImplementation("com.squareup.okhttp3:mockwebserver") |
| 115 | + |
| 116 | + testRuntimeOnly("ch.qos.logback:logback-classic") |
| 117 | + testRuntimeOnly("io.projectreactor.netty:reactor-netty-http") |
| 118 | + testRuntimeOnly("jakarta.xml.bind:jakarta.xml.bind-api") |
| 119 | + testRuntimeOnly("org.apache.tomcat.embed:tomcat-embed-el") |
| 120 | + testRuntimeOnly("org.glassfish.jersey.ext:jersey-spring6") |
| 121 | + testRuntimeOnly("org.hsqldb:hsqldb") |
| 122 | +} |
0 commit comments