Polish quote form used in Gradle scripts
Replace Gradle single quote strings with the double quote form whenever possible. The change helps to being consistency to the dependencies section where mostly single quotes were used, but occasionally double quotes were required due to `${}` references.pull/19863/head
parent
ed6fbc6bec
commit
0209cd3e4c
@ -1,20 +1,19 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' apply false // https://youtrack.jetbrains.com/issue/KT-30276
|
id "org.jetbrains.kotlin.jvm" apply false // https://youtrack.jetbrains.com/issue/KT-30276
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Build'
|
description = "Spring Boot Build"
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group 'org.springframework.boot'
|
group "org.springframework.boot"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven { url 'https://repo.spring.io/milestone' }
|
maven { url "https://repo.spring.io/milestone" }
|
||||||
maven { url 'https://repo.spring.io/snapshot' }
|
maven { url "https://repo.spring.io/snapshot" }
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations.all {
|
configurations.all {
|
||||||
resolutionStrategy.cacheChangingModulesFor 60, 'minutes'
|
resolutionStrategy.cacheChangingModulesFor 60, "minutes"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,96 +1,96 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id "java-library"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
id 'org.springframework.boot.configuration-properties'
|
id "org.springframework.boot.configuration-properties"
|
||||||
id 'org.springframework.boot.optional-dependencies'
|
id "org.springframework.boot.optional-dependencies"
|
||||||
id 'org.springframework.boot.deployed'
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Actuator'
|
description = "Spring Boot Actuator"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
|
|
||||||
implementation project(':spring-boot-project:spring-boot')
|
implementation project(":spring-boot-project:spring-boot")
|
||||||
|
|
||||||
optional platform(project(':spring-boot-project:spring-boot-dependencies'))
|
optional platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
optional 'com.fasterxml.jackson.core:jackson-databind'
|
optional "com.fasterxml.jackson.core:jackson-databind"
|
||||||
optional 'com.github.ben-manes.caffeine:caffeine'
|
optional "com.github.ben-manes.caffeine:caffeine"
|
||||||
optional 'com.hazelcast:hazelcast'
|
optional "com.hazelcast:hazelcast"
|
||||||
optional 'com.hazelcast:hazelcast-spring'
|
optional "com.hazelcast:hazelcast-spring"
|
||||||
optional 'com.sun.mail:jakarta.mail'
|
optional "com.sun.mail:jakarta.mail"
|
||||||
optional 'com.zaxxer:HikariCP'
|
optional "com.zaxxer:HikariCP"
|
||||||
optional 'io.lettuce:lettuce-core'
|
optional "io.lettuce:lettuce-core"
|
||||||
optional 'io.micrometer:micrometer-core'
|
optional "io.micrometer:micrometer-core"
|
||||||
optional 'io.micrometer:micrometer-registry-prometheus'
|
optional "io.micrometer:micrometer-registry-prometheus"
|
||||||
optional 'io.prometheus:simpleclient_pushgateway'
|
optional "io.prometheus:simpleclient_pushgateway"
|
||||||
optional 'io.reactivex:rxjava-reactive-streams'
|
optional "io.reactivex:rxjava-reactive-streams"
|
||||||
optional 'org.elasticsearch.client:elasticsearch-rest-client'
|
optional "org.elasticsearch.client:elasticsearch-rest-client"
|
||||||
optional ('io.undertow:undertow-servlet') {
|
optional ("io.undertow:undertow-servlet") {
|
||||||
exclude group: 'org.jboss.spec.javax.annotation', module: 'jboss-annotations-api_1.2_spec'
|
exclude group: "org.jboss.spec.javax.annotation", module: "jboss-annotations-api_1.2_spec"
|
||||||
exclude group: 'org.jboss.spec.javax.servlet', module: 'jboss-servlet-api_4.0_spec'
|
exclude group: "org.jboss.spec.javax.servlet", module: "jboss-servlet-api_4.0_spec"
|
||||||
}
|
}
|
||||||
optional 'javax.cache:cache-api'
|
optional "javax.cache:cache-api"
|
||||||
optional 'javax.jms:javax.jms-api'
|
optional "javax.jms:javax.jms-api"
|
||||||
optional 'net.sf.ehcache:ehcache'
|
optional "net.sf.ehcache:ehcache"
|
||||||
optional 'org.apache.tomcat.embed:tomcat-embed-core'
|
optional "org.apache.tomcat.embed:tomcat-embed-core"
|
||||||
optional 'org.aspectj:aspectjweaver'
|
optional "org.aspectj:aspectjweaver"
|
||||||
optional 'org.eclipse.jetty:jetty-server'
|
optional "org.eclipse.jetty:jetty-server"
|
||||||
optional 'org.elasticsearch:elasticsearch'
|
optional "org.elasticsearch:elasticsearch"
|
||||||
optional 'org.flywaydb:flyway-core'
|
optional "org.flywaydb:flyway-core"
|
||||||
optional 'org.glassfish.jersey.core:jersey-server'
|
optional "org.glassfish.jersey.core:jersey-server"
|
||||||
optional 'org.glassfish.jersey.containers:jersey-container-servlet-core'
|
optional "org.glassfish.jersey.containers:jersey-container-servlet-core"
|
||||||
optional 'org.hibernate.validator:hibernate-validator'
|
optional "org.hibernate.validator:hibernate-validator"
|
||||||
optional 'org.influxdb:influxdb-java'
|
optional "org.influxdb:influxdb-java"
|
||||||
optional 'org.liquibase:liquibase-core'
|
optional "org.liquibase:liquibase-core"
|
||||||
optional 'org.mongodb:mongodb-driver-async'
|
optional "org.mongodb:mongodb-driver-async"
|
||||||
optional 'org.mongodb:mongodb-driver-reactivestreams'
|
optional "org.mongodb:mongodb-driver-reactivestreams"
|
||||||
optional 'org.springframework:spring-jdbc'
|
optional "org.springframework:spring-jdbc"
|
||||||
optional 'org.springframework:spring-messaging'
|
optional "org.springframework:spring-messaging"
|
||||||
optional 'org.springframework:spring-webflux'
|
optional "org.springframework:spring-webflux"
|
||||||
optional 'org.springframework:spring-web'
|
optional "org.springframework:spring-web"
|
||||||
optional 'org.springframework:spring-webmvc'
|
optional "org.springframework:spring-webmvc"
|
||||||
optional 'org.springframework.amqp:spring-rabbit'
|
optional "org.springframework.amqp:spring-rabbit"
|
||||||
optional 'org.springframework.data:spring-data-cassandra'
|
optional "org.springframework.data:spring-data-cassandra"
|
||||||
optional 'org.springframework.data:spring-data-couchbase'
|
optional "org.springframework.data:spring-data-couchbase"
|
||||||
optional 'org.springframework.data:spring-data-ldap'
|
optional "org.springframework.data:spring-data-ldap"
|
||||||
optional 'org.springframework.data:spring-data-mongodb'
|
optional "org.springframework.data:spring-data-mongodb"
|
||||||
optional 'org.springframework.data:spring-data-neo4j'
|
optional "org.springframework.data:spring-data-neo4j"
|
||||||
optional 'org.springframework.data:spring-data-redis'
|
optional "org.springframework.data:spring-data-redis"
|
||||||
optional 'org.springframework.data:spring-data-rest-webmvc'
|
optional "org.springframework.data:spring-data-rest-webmvc"
|
||||||
optional 'org.springframework.data:spring-data-solr'
|
optional "org.springframework.data:spring-data-solr"
|
||||||
optional 'org.springframework.integration:spring-integration-core'
|
optional "org.springframework.integration:spring-integration-core"
|
||||||
optional 'org.springframework.security:spring-security-core'
|
optional "org.springframework.security:spring-security-core"
|
||||||
optional 'org.springframework.security:spring-security-web'
|
optional "org.springframework.security:spring-security-web"
|
||||||
optional 'org.springframework.session:spring-session-core'
|
optional "org.springframework.session:spring-session-core"
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-test')
|
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-tools:spring-boot-test-support")
|
||||||
testImplementation project(':spring-boot-project:spring-boot-autoconfigure')
|
testImplementation project(":spring-boot-project:spring-boot-autoconfigure")
|
||||||
testImplementation 'org.assertj:assertj-core'
|
testImplementation "org.assertj:assertj-core"
|
||||||
testImplementation 'com.jayway.jsonpath:json-path'
|
testImplementation "com.jayway.jsonpath:json-path"
|
||||||
testImplementation 'io.projectreactor:reactor-test'
|
testImplementation "io.projectreactor:reactor-test"
|
||||||
testImplementation 'org.apache.logging.log4j:log4j-to-slf4j'
|
testImplementation "org.apache.logging.log4j:log4j-to-slf4j"
|
||||||
testImplementation 'org.awaitility:awaitility'
|
testImplementation "org.awaitility:awaitility"
|
||||||
testImplementation 'org.glassfish.jersey.media:jersey-media-json-jackson'
|
testImplementation "org.glassfish.jersey.media:jersey-media-json-jackson"
|
||||||
testImplementation 'org.hamcrest:hamcrest'
|
testImplementation "org.hamcrest:hamcrest"
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||||
testImplementation 'org.mockito:mockito-core'
|
testImplementation "org.mockito:mockito-core"
|
||||||
testImplementation 'org.mockito:mockito-junit-jupiter'
|
testImplementation "org.mockito:mockito-junit-jupiter"
|
||||||
testImplementation 'org.skyscreamer:jsonassert'
|
testImplementation "org.skyscreamer:jsonassert"
|
||||||
testImplementation 'org.springframework:spring-test'
|
testImplementation "org.springframework:spring-test"
|
||||||
|
|
||||||
testRuntimeOnly 'io.projectreactor.netty:reactor-netty'
|
testRuntimeOnly "io.projectreactor.netty:reactor-netty"
|
||||||
testRuntimeOnly 'javax.xml.bind:jaxb-api'
|
testRuntimeOnly "javax.xml.bind:jaxb-api"
|
||||||
testRuntimeOnly 'org.apache.tomcat.embed:tomcat-embed-el'
|
testRuntimeOnly "org.apache.tomcat.embed:tomcat-embed-el"
|
||||||
testRuntimeOnly 'org.glassfish.jersey.ext:jersey-spring4'
|
testRuntimeOnly "org.glassfish.jersey.ext:jersey-spring4"
|
||||||
testRuntimeOnly 'org.hsqldb:hsqldb'
|
testRuntimeOnly "org.hsqldb:hsqldb"
|
||||||
}
|
}
|
||||||
|
|
||||||
compileJava {
|
compileJava {
|
||||||
options.compilerArgs << '-parameters'
|
options.compilerArgs << "-parameters"
|
||||||
}
|
}
|
||||||
|
|
||||||
compileTestJava {
|
compileTestJava {
|
||||||
options.compilerArgs << '-parameters'
|
options.compilerArgs << "-parameters"
|
||||||
}
|
}
|
@ -1,185 +1,185 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id "java-library"
|
||||||
id 'org.jetbrains.kotlin.jvm'
|
id "org.jetbrains.kotlin.jvm"
|
||||||
id 'org.springframework.boot.auto-configuration'
|
id "org.springframework.boot.auto-configuration"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
id 'org.springframework.boot.deployed'
|
id "org.springframework.boot.deployed"
|
||||||
id 'org.springframework.boot.internal-dependency-management'
|
id "org.springframework.boot.internal-dependency-management"
|
||||||
id 'org.springframework.boot.optional-dependencies'
|
id "org.springframework.boot.optional-dependencies"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot AutoConfigure'
|
description = "Spring Boot AutoConfigure"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':spring-boot-project:spring-boot')
|
api project(":spring-boot-project:spring-boot")
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
|
|
||||||
optional platform(project(':spring-boot-project:spring-boot-dependencies'))
|
optional platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
optional 'com.atomikos:transactions-jdbc'
|
optional "com.atomikos:transactions-jdbc"
|
||||||
optional 'com.atomikos:transactions-jta'
|
optional "com.atomikos:transactions-jta"
|
||||||
optional 'com.couchbase.client:couchbase-spring-cache'
|
optional "com.couchbase.client:couchbase-spring-cache"
|
||||||
optional 'com.fasterxml.jackson.core:jackson-databind'
|
optional "com.fasterxml.jackson.core:jackson-databind"
|
||||||
optional 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor'
|
optional "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor"
|
||||||
optional 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml'
|
optional "com.fasterxml.jackson.dataformat:jackson-dataformat-xml"
|
||||||
optional 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
|
optional "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
|
||||||
optional 'com.fasterxml.jackson.module:jackson-module-parameter-names'
|
optional "com.fasterxml.jackson.module:jackson-module-parameter-names"
|
||||||
optional 'com.google.code.gson:gson'
|
optional "com.google.code.gson:gson"
|
||||||
optional 'com.hazelcast:hazelcast'
|
optional "com.hazelcast:hazelcast"
|
||||||
optional 'com.hazelcast:hazelcast-client'
|
optional "com.hazelcast:hazelcast-client"
|
||||||
optional 'com.hazelcast:hazelcast-spring'
|
optional "com.hazelcast:hazelcast-spring"
|
||||||
optional 'com.h2database:h2'
|
optional "com.h2database:h2"
|
||||||
optional 'com.samskivert:jmustache'
|
optional "com.samskivert:jmustache"
|
||||||
optional 'com.sun.mail:jakarta.mail'
|
optional "com.sun.mail:jakarta.mail"
|
||||||
optional 'de.flapdoodle.embed:de.flapdoodle.embed.mongo'
|
optional "de.flapdoodle.embed:de.flapdoodle.embed.mongo"
|
||||||
optional 'io.lettuce:lettuce-core'
|
optional "io.lettuce:lettuce-core"
|
||||||
optional 'io.projectreactor.netty:reactor-netty'
|
optional "io.projectreactor.netty:reactor-netty"
|
||||||
optional 'io.rsocket:rsocket-core'
|
optional "io.rsocket:rsocket-core"
|
||||||
optional 'io.rsocket:rsocket-transport-netty'
|
optional "io.rsocket:rsocket-transport-netty"
|
||||||
optional ('io.undertow:undertow-servlet') {
|
optional ("io.undertow:undertow-servlet") {
|
||||||
exclude group: 'org.jboss.spec.javax.annotation', module: 'jboss-annotations-api_1.2_spec'
|
exclude group: "org.jboss.spec.javax.annotation", module: "jboss-annotations-api_1.2_spec"
|
||||||
exclude group: 'org.jboss.spec.javax.servlet', module: 'jboss-servlet-api_4.0_spec'
|
exclude group: "org.jboss.spec.javax.servlet", module: "jboss-servlet-api_4.0_spec"
|
||||||
}
|
}
|
||||||
optional ('io.undertow:undertow-websockets-jsr') {
|
optional ("io.undertow:undertow-websockets-jsr") {
|
||||||
exclude group: 'org.jboss.spec.javax.annotation', module: 'jboss-annotations-api_1.2_spec'
|
exclude group: "org.jboss.spec.javax.annotation", module: "jboss-annotations-api_1.2_spec"
|
||||||
exclude group: 'org.jboss.spec.javax.servlet', module: 'jboss-servlet-api_4.0_spec'
|
exclude group: "org.jboss.spec.javax.servlet", module: "jboss-servlet-api_4.0_spec"
|
||||||
}
|
}
|
||||||
optional 'jakarta.jms:jakarta.jms-api'
|
optional "jakarta.jms:jakarta.jms-api"
|
||||||
optional 'jakarta.mail:jakarta.mail-api'
|
optional "jakarta.mail:jakarta.mail-api"
|
||||||
optional 'jakarta.json.bind:jakarta.json.bind-api'
|
optional "jakarta.json.bind:jakarta.json.bind-api"
|
||||||
optional 'jakarta.persistence:jakarta.persistence-api'
|
optional "jakarta.persistence:jakarta.persistence-api"
|
||||||
optional 'jakarta.validation:jakarta.validation-api'
|
optional "jakarta.validation:jakarta.validation-api"
|
||||||
optional 'jakarta.ws.rs:jakarta.ws.rs-api'
|
optional "jakarta.ws.rs:jakarta.ws.rs-api"
|
||||||
optional 'javax.cache:cache-api'
|
optional "javax.cache:cache-api"
|
||||||
optional 'javax.money:money-api'
|
optional "javax.money:money-api"
|
||||||
optional 'net.sf.ehcache:ehcache'
|
optional "net.sf.ehcache:ehcache"
|
||||||
optional 'org.apache.activemq:activemq-broker'
|
optional "org.apache.activemq:activemq-broker"
|
||||||
optional 'org.apache.activemq:artemis-jms-client'
|
optional "org.apache.activemq:artemis-jms-client"
|
||||||
optional 'org.apache.activemq:artemis-jms-server'
|
optional "org.apache.activemq:artemis-jms-server"
|
||||||
optional 'org.apache.commons:commons-dbcp2'
|
optional "org.apache.commons:commons-dbcp2"
|
||||||
optional 'org.apache.kafka:kafka-streams'
|
optional "org.apache.kafka:kafka-streams"
|
||||||
optional 'org.apache.solr:solr-solrj'
|
optional "org.apache.solr:solr-solrj"
|
||||||
optional 'org.apache.tomcat.embed:tomcat-embed-core'
|
optional "org.apache.tomcat.embed:tomcat-embed-core"
|
||||||
optional 'org.apache.tomcat.embed:tomcat-embed-el'
|
optional "org.apache.tomcat.embed:tomcat-embed-el"
|
||||||
optional 'org.apache.tomcat.embed:tomcat-embed-websocket'
|
optional "org.apache.tomcat.embed:tomcat-embed-websocket"
|
||||||
optional 'org.apache.tomcat:tomcat-jdbc'
|
optional "org.apache.tomcat:tomcat-jdbc"
|
||||||
optional 'org.codehaus.btm:btm'
|
optional "org.codehaus.btm:btm"
|
||||||
optional 'org.codehaus.groovy:groovy-templates'
|
optional "org.codehaus.groovy:groovy-templates"
|
||||||
optional 'com.github.ben-manes.caffeine:caffeine'
|
optional "com.github.ben-manes.caffeine:caffeine"
|
||||||
optional 'com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute'
|
optional "com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute"
|
||||||
optional 'com.sendgrid:sendgrid-java'
|
optional "com.sendgrid:sendgrid-java"
|
||||||
optional 'com.unboundid:unboundid-ldapsdk'
|
optional "com.unboundid:unboundid-ldapsdk"
|
||||||
optional 'com.zaxxer:HikariCP'
|
optional "com.zaxxer:HikariCP"
|
||||||
optional 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
|
optional "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect"
|
||||||
optional 'org.aspectj:aspectjweaver'
|
optional "org.aspectj:aspectjweaver"
|
||||||
optional 'org.eclipse.jetty:jetty-webapp'
|
optional "org.eclipse.jetty:jetty-webapp"
|
||||||
optional 'org.eclipse.jetty:jetty-reactive-httpclient'
|
optional "org.eclipse.jetty:jetty-reactive-httpclient"
|
||||||
optional 'org.eclipse.jetty.websocket:javax-websocket-server-impl'
|
optional "org.eclipse.jetty.websocket:javax-websocket-server-impl"
|
||||||
optional 'org.ehcache:ehcache'
|
optional "org.ehcache:ehcache"
|
||||||
optional 'org.elasticsearch.client:elasticsearch-rest-client'
|
optional "org.elasticsearch.client:elasticsearch-rest-client"
|
||||||
optional 'org.elasticsearch.client:elasticsearch-rest-high-level-client'
|
optional "org.elasticsearch.client:elasticsearch-rest-high-level-client"
|
||||||
optional 'org.flywaydb:flyway-core'
|
optional "org.flywaydb:flyway-core"
|
||||||
optional 'org.freemarker:freemarker'
|
optional "org.freemarker:freemarker"
|
||||||
optional 'org.glassfish.jersey.core:jersey-server'
|
optional "org.glassfish.jersey.core:jersey-server"
|
||||||
optional 'org.glassfish.jersey.containers:jersey-container-servlet-core'
|
optional "org.glassfish.jersey.containers:jersey-container-servlet-core"
|
||||||
optional 'org.glassfish.jersey.containers:jersey-container-servlet'
|
optional "org.glassfish.jersey.containers:jersey-container-servlet"
|
||||||
optional 'org.glassfish.jersey.ext:jersey-spring5'
|
optional "org.glassfish.jersey.ext:jersey-spring5"
|
||||||
optional 'org.glassfish.jersey.media:jersey-media-json-jackson'
|
optional "org.glassfish.jersey.media:jersey-media-json-jackson"
|
||||||
optional 'org.hibernate:hibernate-core'
|
optional "org.hibernate:hibernate-core"
|
||||||
optional 'org.hibernate:hibernate-jcache'
|
optional "org.hibernate:hibernate-jcache"
|
||||||
optional 'org.hibernate.validator:hibernate-validator'
|
optional "org.hibernate.validator:hibernate-validator"
|
||||||
optional 'org.infinispan:infinispan-component-annotations'
|
optional "org.infinispan:infinispan-component-annotations"
|
||||||
optional 'org.infinispan:infinispan-jcache'
|
optional "org.infinispan:infinispan-jcache"
|
||||||
optional 'org.infinispan:infinispan-spring5-embedded'
|
optional "org.infinispan:infinispan-spring5-embedded"
|
||||||
optional 'org.influxdb:influxdb-java'
|
optional "org.influxdb:influxdb-java"
|
||||||
optional 'org.jboss:jboss-transaction-spi'
|
optional "org.jboss:jboss-transaction-spi"
|
||||||
optional 'org.jooq:jooq'
|
optional "org.jooq:jooq"
|
||||||
optional 'org.liquibase:liquibase-core'
|
optional "org.liquibase:liquibase-core"
|
||||||
optional 'org.messaginghub:pooled-jms'
|
optional "org.messaginghub:pooled-jms"
|
||||||
optional 'org.mongodb:mongodb-driver-async'
|
optional "org.mongodb:mongodb-driver-async"
|
||||||
optional 'org.mongodb:mongodb-driver-reactivestreams'
|
optional "org.mongodb:mongodb-driver-reactivestreams"
|
||||||
optional 'org.quartz-scheduler:quartz'
|
optional "org.quartz-scheduler:quartz"
|
||||||
optional 'org.springframework:spring-jdbc'
|
optional "org.springframework:spring-jdbc"
|
||||||
optional 'org.springframework.integration:spring-integration-core'
|
optional "org.springframework.integration:spring-integration-core"
|
||||||
optional 'org.springframework.integration:spring-integration-jdbc'
|
optional "org.springframework.integration:spring-integration-jdbc"
|
||||||
optional 'org.springframework.integration:spring-integration-jmx'
|
optional "org.springframework.integration:spring-integration-jmx"
|
||||||
optional 'org.springframework:spring-jms'
|
optional "org.springframework:spring-jms"
|
||||||
optional 'org.springframework:spring-orm'
|
optional "org.springframework:spring-orm"
|
||||||
optional 'org.springframework:spring-tx'
|
optional "org.springframework:spring-tx"
|
||||||
optional 'org.springframework:spring-web'
|
optional "org.springframework:spring-web"
|
||||||
optional 'org.springframework:spring-websocket'
|
optional "org.springframework:spring-websocket"
|
||||||
optional 'org.springframework:spring-webflux'
|
optional "org.springframework:spring-webflux"
|
||||||
optional 'org.springframework:spring-webmvc'
|
optional "org.springframework:spring-webmvc"
|
||||||
optional 'org.springframework.batch:spring-batch-core'
|
optional "org.springframework.batch:spring-batch-core"
|
||||||
optional 'org.springframework.data:spring-data-couchbase'
|
optional "org.springframework.data:spring-data-couchbase"
|
||||||
optional 'org.springframework.data:spring-data-jpa'
|
optional "org.springframework.data:spring-data-jpa"
|
||||||
optional 'org.springframework.data:spring-data-rest-webmvc'
|
optional "org.springframework.data:spring-data-rest-webmvc"
|
||||||
optional 'org.springframework.data:spring-data-cassandra'
|
optional "org.springframework.data:spring-data-cassandra"
|
||||||
optional ('org.springframework.data:spring-data-elasticsearch') {
|
optional ("org.springframework.data:spring-data-elasticsearch") {
|
||||||
exclude group: 'org.elasticsearch.client', module: 'transport'
|
exclude group: "org.elasticsearch.client", module: "transport"
|
||||||
}
|
}
|
||||||
optional 'org.springframework.data:spring-data-jdbc'
|
optional "org.springframework.data:spring-data-jdbc"
|
||||||
optional 'org.springframework.data:spring-data-ldap'
|
optional "org.springframework.data:spring-data-ldap"
|
||||||
optional 'org.springframework.data:spring-data-mongodb'
|
optional "org.springframework.data:spring-data-mongodb"
|
||||||
optional 'org.springframework.data:spring-data-neo4j'
|
optional "org.springframework.data:spring-data-neo4j"
|
||||||
optional 'org.springframework.data:spring-data-redis'
|
optional "org.springframework.data:spring-data-redis"
|
||||||
optional 'org.springframework.data:spring-data-solr'
|
optional "org.springframework.data:spring-data-solr"
|
||||||
optional 'org.springframework.hateoas:spring-hateoas'
|
optional "org.springframework.hateoas:spring-hateoas"
|
||||||
optional 'org.springframework.security:spring-security-acl'
|
optional "org.springframework.security:spring-security-acl"
|
||||||
optional 'org.springframework.security:spring-security-config'
|
optional "org.springframework.security:spring-security-config"
|
||||||
optional 'org.springframework.security:spring-security-data'
|
optional "org.springframework.security:spring-security-data"
|
||||||
optional 'org.springframework.security:spring-security-oauth2-client'
|
optional "org.springframework.security:spring-security-oauth2-client"
|
||||||
optional 'org.springframework.security:spring-security-oauth2-jose'
|
optional "org.springframework.security:spring-security-oauth2-jose"
|
||||||
optional 'org.springframework.security:spring-security-oauth2-resource-server'
|
optional "org.springframework.security:spring-security-oauth2-resource-server"
|
||||||
optional 'org.springframework.security:spring-security-rsocket'
|
optional "org.springframework.security:spring-security-rsocket"
|
||||||
optional 'org.springframework.security:spring-security-saml2-service-provider'
|
optional "org.springframework.security:spring-security-saml2-service-provider"
|
||||||
optional 'org.springframework.security:spring-security-web'
|
optional "org.springframework.security:spring-security-web"
|
||||||
optional 'org.springframework.session:spring-session-core'
|
optional "org.springframework.session:spring-session-core"
|
||||||
optional 'org.springframework.session:spring-session-data-mongodb'
|
optional "org.springframework.session:spring-session-data-mongodb"
|
||||||
optional 'org.springframework.session:spring-session-data-redis'
|
optional "org.springframework.session:spring-session-data-redis"
|
||||||
optional 'org.springframework.session:spring-session-hazelcast'
|
optional "org.springframework.session:spring-session-hazelcast"
|
||||||
optional 'org.springframework.session:spring-session-jdbc'
|
optional "org.springframework.session:spring-session-jdbc"
|
||||||
optional 'org.springframework.amqp:spring-rabbit'
|
optional "org.springframework.amqp:spring-rabbit"
|
||||||
optional 'org.springframework.kafka:spring-kafka'
|
optional "org.springframework.kafka:spring-kafka"
|
||||||
optional 'org.springframework.ws:spring-ws-core'
|
optional "org.springframework.ws:spring-ws-core"
|
||||||
optional 'org.thymeleaf:thymeleaf'
|
optional "org.thymeleaf:thymeleaf"
|
||||||
optional 'org.thymeleaf:thymeleaf-spring5'
|
optional "org.thymeleaf:thymeleaf-spring5"
|
||||||
optional 'org.thymeleaf.extras:thymeleaf-extras-java8time'
|
optional "org.thymeleaf.extras:thymeleaf-extras-java8time"
|
||||||
optional 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
|
optional "org.thymeleaf.extras:thymeleaf-extras-springsecurity5"
|
||||||
optional 'redis.clients:jedis'
|
optional "redis.clients:jedis"
|
||||||
|
|
||||||
testImplementation platform(project(':spring-boot-project:spring-boot-parent'))
|
testImplementation platform(project(":spring-boot-project:spring-boot-parent"))
|
||||||
testImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-test-support')
|
testImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
||||||
testImplementation project(':spring-boot-project:spring-boot-test')
|
testImplementation project(":spring-boot-project:spring-boot-test")
|
||||||
testImplementation 'ch.qos.logback:logback-classic'
|
testImplementation "ch.qos.logback:logback-classic"
|
||||||
testImplementation 'commons-fileupload:commons-fileupload'
|
testImplementation "commons-fileupload:commons-fileupload"
|
||||||
testImplementation 'com.atomikos:transactions-jms'
|
testImplementation "com.atomikos:transactions-jms"
|
||||||
testImplementation 'com.jayway.jsonpath:json-path'
|
testImplementation "com.jayway.jsonpath:json-path"
|
||||||
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
testImplementation "com.squareup.okhttp3:mockwebserver"
|
||||||
testImplementation 'com.sun.xml.messaging.saaj:saaj-impl'
|
testImplementation "com.sun.xml.messaging.saaj:saaj-impl"
|
||||||
testImplementation 'jakarta.json:jakarta.json-api'
|
testImplementation "jakarta.json:jakarta.json-api"
|
||||||
testImplementation 'jakarta.xml.ws:jakarta.xml.ws-api'
|
testImplementation "jakarta.xml.ws:jakarta.xml.ws-api"
|
||||||
testImplementation 'mysql:mysql-connector-java'
|
testImplementation "mysql:mysql-connector-java"
|
||||||
testImplementation 'org.apache.johnzon:johnzon-jsonb'
|
testImplementation "org.apache.johnzon:johnzon-jsonb"
|
||||||
testImplementation 'org.apache.logging.log4j:log4j-to-slf4j'
|
testImplementation "org.apache.logging.log4j:log4j-to-slf4j"
|
||||||
testImplementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
|
testImplementation "org.apache.tomcat.embed:tomcat-embed-jasper"
|
||||||
testImplementation 'org.assertj:assertj-core'
|
testImplementation "org.assertj:assertj-core"
|
||||||
testImplementation 'org.awaitility:awaitility'
|
testImplementation "org.awaitility:awaitility"
|
||||||
testImplementation 'org.hsqldb:hsqldb'
|
testImplementation "org.hsqldb:hsqldb"
|
||||||
testImplementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
|
testImplementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||||
testImplementation 'org.neo4j:neo4j-ogm-bolt-native-types'
|
testImplementation "org.neo4j:neo4j-ogm-bolt-native-types"
|
||||||
testImplementation 'org.neo4j:neo4j-ogm-http-driver'
|
testImplementation "org.neo4j:neo4j-ogm-http-driver"
|
||||||
testImplementation 'org.neo4j:neo4j-ogm-embedded-driver'
|
testImplementation "org.neo4j:neo4j-ogm-embedded-driver"
|
||||||
testImplementation 'org.springframework:spring-test'
|
testImplementation "org.springframework:spring-test"
|
||||||
testImplementation 'org.springframework.kafka:spring-kafka-test'
|
testImplementation "org.springframework.kafka:spring-kafka-test"
|
||||||
testImplementation 'org.springframework.security:spring-security-test'
|
testImplementation "org.springframework.security:spring-security-test"
|
||||||
testImplementation 'org.testcontainers:cassandra'
|
testImplementation "org.testcontainers:cassandra"
|
||||||
testImplementation 'org.testcontainers:couchbase'
|
testImplementation "org.testcontainers:couchbase"
|
||||||
testImplementation 'org.testcontainers:elasticsearch'
|
testImplementation "org.testcontainers:elasticsearch"
|
||||||
testImplementation 'org.testcontainers:junit-jupiter'
|
testImplementation "org.testcontainers:junit-jupiter"
|
||||||
testImplementation 'org.testcontainers:testcontainers'
|
testImplementation "org.testcontainers:testcontainers"
|
||||||
testImplementation 'org.yaml:snakeyaml'
|
testImplementation "org.yaml:snakeyaml"
|
||||||
|
|
||||||
testRuntimeOnly 'org.jetbrains.kotlin:kotlin-reflect'
|
testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect"
|
||||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,20 +1,20 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id "java-library"
|
||||||
id 'maven-publish'
|
id "maven-publish"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
id 'org.springframework.boot.internal-dependency-management'
|
id "org.springframework.boot.internal-dependency-management"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Properties Migrator'
|
description = "Spring Boot Properties Migrator"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
|
|
||||||
implementation project(':spring-boot-project:spring-boot')
|
implementation project(":spring-boot-project:spring-boot")
|
||||||
implementation project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata')
|
implementation project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata")
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-test')
|
testImplementation project(":spring-boot-project:spring-boot-test")
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||||
testImplementation 'org.assertj:assertj-core'
|
testImplementation "org.assertj:assertj-core"
|
||||||
testImplementation 'org.springframework:spring-test'
|
testImplementation "org.springframework:spring-test"
|
||||||
}
|
}
|
@ -1,15 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for JMS messaging using Apache ActiveMQ"
|
description = "Starter for JMS messaging using Apache ActiveMQ"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-jms'
|
api "org.springframework:spring-jms"
|
||||||
api ('org.apache.activemq:activemq-broker') {
|
api ("org.apache.activemq:activemq-broker") {
|
||||||
exclude group: 'org.apache.geronimo.specs', module: 'geronimo-jms_1.1_spec'
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_1.1_spec"
|
||||||
}
|
}
|
||||||
api 'jakarta.jms:jakarta.jms-api'
|
api "jakarta.jms:jakarta.jms-api"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Boot's Actuator which provides production ready features to help you monitor and manage your application"
|
description = "Starter for using Spring Boot's Actuator which provides production ready features to help you monitor and manage your application"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api project(':spring-boot-project:spring-boot-actuator-autoconfigure')
|
api project(":spring-boot-project:spring-boot-actuator-autoconfigure")
|
||||||
api 'io.micrometer:micrometer-core'
|
api "io.micrometer:micrometer-core"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring AMQP and Rabbit MQ"
|
description = "Starter for using Spring AMQP and Rabbit MQ"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-messaging'
|
api "org.springframework:spring-messaging"
|
||||||
api 'org.springframework.amqp:spring-rabbit'
|
api "org.springframework.amqp:spring-rabbit"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for aspect-oriented programming with Spring AOP and AspectJ"
|
description = "Starter for aspect-oriented programming with Spring AOP and AspectJ"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-aop'
|
api "org.springframework:spring-aop"
|
||||||
api 'org.aspectj:aspectjweaver'
|
api "org.aspectj:aspectjweaver"
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for JMS messaging using Apache Artemis"
|
description = "Starter for JMS messaging using Apache Artemis"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'jakarta.jms:jakarta.jms-api'
|
api "jakarta.jms:jakarta.jms-api"
|
||||||
api 'jakarta.json:jakarta.json-api'
|
api "jakarta.json:jakarta.json-api"
|
||||||
api 'org.springframework:spring-jms'
|
api "org.springframework:spring-jms"
|
||||||
api ('org.apache.activemq:artemis-jms-client') {
|
api ("org.apache.activemq:artemis-jms-client") {
|
||||||
exclude group: 'commons-logging', module: 'commons-logging'
|
exclude group: "commons-logging", module: "commons-logging"
|
||||||
exclude group: 'org.apache.geronimo.specs', module: 'geronimo-jms_2.0_spec'
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
||||||
exclude group: 'org.apache.geronimo.specs', module: 'geronimo-json_1.0_spec'
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-json_1.0_spec"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Batch"
|
description = "Starter for using Spring Batch"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||||
api 'org.springframework.batch:spring-batch-core'
|
api "org.springframework.batch:spring-batch-core"
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Framework's caching support"
|
description = "Starter for using Spring Framework's caching support"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-context-support'
|
api "org.springframework:spring-context-support"
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Cassandra distributed database and Spring Data Cassandra Reactive"
|
description = "Starter for using Cassandra distributed database and Spring Data Cassandra Reactive"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-tx'
|
api "org.springframework:spring-tx"
|
||||||
api 'org.springframework.data:spring-data-cassandra'
|
api "org.springframework.data:spring-data-cassandra"
|
||||||
api 'io.projectreactor:reactor-core'
|
api "io.projectreactor:reactor-core"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Cassandra distributed database and Spring Data Cassandra"
|
description = "Starter for using Cassandra distributed database and Spring Data Cassandra"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-tx'
|
api "org.springframework:spring-tx"
|
||||||
api 'org.springframework.data:spring-data-cassandra'
|
api "org.springframework.data:spring-data-cassandra"
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase Reactive"
|
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase Reactive"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'io.projectreactor:reactor-core'
|
api "io.projectreactor:reactor-core"
|
||||||
api 'io.reactivex:rxjava-reactive-streams'
|
api "io.reactivex:rxjava-reactive-streams"
|
||||||
api ('org.springframework.data:spring-data-couchbase') {
|
api ("org.springframework.data:spring-data-couchbase") {
|
||||||
exclude group: 'com.couchbase.client', module: 'encryption'
|
exclude group: "com.couchbase.client", module: "encryption"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase"
|
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api ('org.springframework.data:spring-data-couchbase') {
|
api ("org.springframework.data:spring-data-couchbase") {
|
||||||
exclude group: 'com.couchbase.client', module: 'encryption'
|
exclude group: "com.couchbase.client", module: "encryption"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Elasticsearch search and analytics engine and Spring Data Elasticsearch"
|
description = "Starter for using Elasticsearch search and analytics engine and Spring Data Elasticsearch"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api ('org.springframework.data:spring-data-elasticsearch') {
|
api ("org.springframework.data:spring-data-elasticsearch") {
|
||||||
exclude group: 'org.elasticsearch.client', module: 'transport'
|
exclude group: "org.elasticsearch.client", module: "transport"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Data JDBC"
|
description = "Starter for using Spring Data JDBC"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||||
api 'org.springframework.data:spring-data-jdbc'
|
api "org.springframework.data:spring-data-jdbc"
|
||||||
}
|
}
|
||||||
|
@ -1,23 +1,23 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Data JPA with Hibernate"
|
description = "Starter for using Spring Data JPA with Hibernate"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-aop')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||||
api 'jakarta.transaction:jakarta.transaction-api'
|
api "jakarta.transaction:jakarta.transaction-api"
|
||||||
api 'jakarta.persistence:jakarta.persistence-api'
|
api "jakarta.persistence:jakarta.persistence-api"
|
||||||
api ('org.hibernate:hibernate-core') {
|
api ("org.hibernate:hibernate-core") {
|
||||||
exclude group: 'javax.activation', module: 'javax.activation-api'
|
exclude group: "javax.activation", module: "javax.activation-api"
|
||||||
exclude group: 'javax.persistence', module: 'javax.persistence-api'
|
exclude group: "javax.persistence", module: "javax.persistence-api"
|
||||||
exclude group: 'javax.xml.bind', module: 'jaxb-api'
|
exclude group: "javax.xml.bind", module: "jaxb-api"
|
||||||
exclude group: 'org.jboss.spec.javax.transaction', module: 'jboss-transaction-api_1.2_spec'
|
exclude group: "org.jboss.spec.javax.transaction", module: "jboss-transaction-api_1.2_spec"
|
||||||
}
|
}
|
||||||
api ('org.springframework.data:spring-data-jpa') {
|
api ("org.springframework.data:spring-data-jpa") {
|
||||||
exclude group: 'org.aspectj', module: 'aspectjrt'
|
exclude group: "org.aspectj", module: "aspectjrt"
|
||||||
}
|
}
|
||||||
api 'org.springframework:spring-aspects'
|
api "org.springframework:spring-aspects"
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Data LDAP"
|
description = "Starter for using Spring Data LDAP"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework.data:spring-data-ldap'
|
api "org.springframework.data:spring-data-ldap"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB Reactive"
|
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB Reactive"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'io.projectreactor:reactor-core'
|
api "io.projectreactor:reactor-core"
|
||||||
api 'org.mongodb:mongodb-driver'
|
api "org.mongodb:mongodb-driver"
|
||||||
api 'org.mongodb:mongodb-driver-async'
|
api "org.mongodb:mongodb-driver-async"
|
||||||
api 'org.mongodb:mongodb-driver-reactivestreams'
|
api "org.mongodb:mongodb-driver-reactivestreams"
|
||||||
api ('org.springframework.data:spring-data-mongodb') {
|
api ("org.springframework.data:spring-data-mongodb") {
|
||||||
exclude group: 'org.mongodb', module: 'mongo-java-driver'
|
exclude group: "org.mongodb", module: "mongo-java-driver"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB"
|
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.mongodb:mongodb-driver'
|
api "org.mongodb:mongodb-driver"
|
||||||
api ('org.springframework.data:spring-data-mongodb') {
|
api ("org.springframework.data:spring-data-mongodb") {
|
||||||
exclude group: 'org.mongodb', module: 'mongo-java-driver'
|
exclude group: "org.mongodb", module: "mongo-java-driver"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Neo4j graph database and Spring Data Neo4j"
|
description = "Starter for using Neo4j graph database and Spring Data Neo4j"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework.data:spring-data-neo4j'
|
api "org.springframework.data:spring-data-neo4j"
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Redis key-value data store with Spring Data Redis reactive and the Lettuce client"
|
description = "Starter for using Redis key-value data store with Spring Data Redis reactive and the Lettuce client"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis")
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Redis key-value data store with Spring Data Redis and the Lettuce client"
|
description = "Starter for using Redis key-value data store with Spring Data Redis and the Lettuce client"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework.data:spring-data-redis'
|
api "org.springframework.data:spring-data-redis"
|
||||||
api 'io.lettuce:lettuce-core'
|
api "io.lettuce:lettuce-core"
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for exposing Spring Data repositories over REST using Spring Data REST"
|
description = "Starter for exposing Spring Data repositories over REST using Spring Data REST"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||||
api 'org.springframework.data:spring-data-rest-webmvc'
|
api "org.springframework.data:spring-data-rest-webmvc"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using the Apache Solr search platform with Spring Data Solr"
|
description = "Starter for using the Apache Solr search platform with Spring Data Solr"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api ('org.apache.solr:solr-solrj') {
|
api ("org.apache.solr:solr-solrj") {
|
||||||
exclude group: 'org.slf4j', module: 'jcl-over-slf4j'
|
exclude group: "org.slf4j", module: "jcl-over-slf4j"
|
||||||
}
|
}
|
||||||
api 'org.springframework.data:spring-data-solr'
|
api "org.springframework.data:spring-data-solr"
|
||||||
api ('org.apache.httpcomponents:httpmime') {
|
api ("org.apache.httpcomponents:httpmime") {
|
||||||
exclude group: 'commons-logging', module: 'commons-logging'
|
exclude group: "commons-logging", module: "commons-logging"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building MVC web applications using FreeMarker views"
|
description = "Starter for building MVC web applications using FreeMarker views"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.freemarker:freemarker'
|
api "org.freemarker:freemarker"
|
||||||
api 'org.springframework:spring-context-support'
|
api "org.springframework:spring-context-support"
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building MVC web applications using Groovy Templates views"
|
description = "Starter for building MVC web applications using Groovy Templates views"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||||
api 'org.codehaus.groovy:groovy-templates'
|
api "org.codehaus.groovy:groovy-templates"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building hypermedia-based RESTful web application with Spring MVC and Spring HATEOAS"
|
description = "Starter for building hypermedia-based RESTful web application with Spring MVC and Spring HATEOAS"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||||
api 'org.springframework.hateoas:spring-hateoas'
|
api "org.springframework.hateoas:spring-hateoas"
|
||||||
api 'org.springframework.plugin:spring-plugin-core'
|
api "org.springframework.plugin:spring-plugin-core"
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Integration"
|
description = "Starter for using Spring Integration"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-aop')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop")
|
||||||
api 'org.springframework.integration:spring-integration-core'
|
api "org.springframework.integration:spring-integration-core"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using JDBC with the HikariCP connection pool"
|
description = "Starter for using JDBC with the HikariCP connection pool"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'com.zaxxer:HikariCP'
|
api "com.zaxxer:HikariCP"
|
||||||
api 'org.springframework:spring-jdbc'
|
api "org.springframework:spring-jdbc"
|
||||||
}
|
}
|
||||||
|
@ -1,27 +1,27 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building RESTful web applications using JAX-RS and Jersey. An alternative to spring-boot-starter-web"
|
description = "Starter for building RESTful web applications using JAX-RS and Jersey. An alternative to spring-boot-starter-web"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-json')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-validation')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-validation")
|
||||||
api 'org.springframework:spring-web'
|
api "org.springframework:spring-web"
|
||||||
api 'org.glassfish.jersey.core:jersey-server'
|
api "org.glassfish.jersey.core:jersey-server"
|
||||||
api 'org.glassfish.jersey.containers:jersey-container-servlet-core'
|
api "org.glassfish.jersey.containers:jersey-container-servlet-core"
|
||||||
api 'org.glassfish.jersey.containers:jersey-container-servlet'
|
api "org.glassfish.jersey.containers:jersey-container-servlet"
|
||||||
api ('org.glassfish.jersey.ext:jersey-bean-validation') {
|
api ("org.glassfish.jersey.ext:jersey-bean-validation") {
|
||||||
exclude group: 'jakarta.el', module: 'jakarta.el-api'
|
exclude group: "jakarta.el", module: "jakarta.el-api"
|
||||||
exclude group: 'org.glassfish', module: 'jakarta.el'
|
exclude group: "org.glassfish", module: "jakarta.el"
|
||||||
}
|
}
|
||||||
api 'org.glassfish.jersey.ext:jersey-spring4'
|
api "org.glassfish.jersey.ext:jersey-spring4"
|
||||||
api 'org.glassfish.jersey.media:jersey-media-json-jackson'
|
api "org.glassfish.jersey.media:jersey-media-json-jackson"
|
||||||
}
|
}
|
||||||
|
|
||||||
checkRuntimeClasspathForConflicts {
|
checkRuntimeClasspathForConflicts {
|
||||||
ignore { name -> name.startsWith('org/aopalliance/intercept/') }
|
ignore { name -> name.startsWith("org/aopalliance/intercept/") }
|
||||||
ignore { name -> name.startsWith('org/aopalliance/aop/') }
|
ignore { name -> name.startsWith("org/aopalliance/aop/") }
|
||||||
}
|
}
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Jetty as the embedded servlet container. An alternative to spring-boot-starter-tomcat"
|
description = "Starter for using Jetty as the embedded servlet container. An alternative to spring-boot-starter-tomcat"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api 'jakarta.servlet:jakarta.servlet-api'
|
api "jakarta.servlet:jakarta.servlet-api"
|
||||||
api 'jakarta.websocket:jakarta.websocket-api'
|
api "jakarta.websocket:jakarta.websocket-api"
|
||||||
api 'org.eclipse.jetty:jetty-servlets'
|
api "org.eclipse.jetty:jetty-servlets"
|
||||||
api ('org.eclipse.jetty:jetty-webapp') {
|
api ("org.eclipse.jetty:jetty-webapp") {
|
||||||
exclude group: 'javax.servlet', module: 'javax.servlet-api'
|
exclude group: "javax.servlet", module: "javax.servlet-api"
|
||||||
}
|
}
|
||||||
api ('org.eclipse.jetty.websocket:websocket-server') {
|
api ("org.eclipse.jetty.websocket:websocket-server") {
|
||||||
exclude group: 'javax.servlet', module: 'javax.servlet-api'
|
exclude group: "javax.servlet", module: "javax.servlet-api"
|
||||||
}
|
}
|
||||||
api ('org.eclipse.jetty.websocket:javax-websocket-server-impl') {
|
api ("org.eclipse.jetty.websocket:javax-websocket-server-impl") {
|
||||||
exclude group: 'javax.annotation', module: 'javax.annotation-api'
|
exclude group: "javax.annotation", module: "javax.annotation-api"
|
||||||
exclude group: 'javax.servlet', module: 'javax.servlet-api'
|
exclude group: "javax.servlet", module: "javax.servlet-api"
|
||||||
exclude group: 'javax.websocket', module: 'javax.websocket-api'
|
exclude group: "javax.websocket", module: "javax.websocket-api"
|
||||||
exclude group: 'javax.websocket', module: 'javax.websocket-client-api'
|
exclude group: "javax.websocket", module: "javax.websocket-client-api"
|
||||||
}
|
}
|
||||||
api 'org.glassfish:jakarta.el'
|
api "org.glassfish:jakarta.el"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using jOOQ to access SQL databases. An alternative to spring-boot-starter-data-jpa or spring-boot-starter-jdbc"
|
description = "Starter for using jOOQ to access SQL databases. An alternative to spring-boot-starter-data-jpa or spring-boot-starter-jdbc"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
|
||||||
api 'jakarta.activation:jakarta.activation-api'
|
api "jakarta.activation:jakarta.activation-api"
|
||||||
api 'jakarta.xml.bind:jakarta.xml.bind-api'
|
api "jakarta.xml.bind:jakarta.xml.bind-api"
|
||||||
api 'org.springframework:spring-tx'
|
api "org.springframework:spring-tx"
|
||||||
api ('org.jooq:jooq') {
|
api ("org.jooq:jooq") {
|
||||||
exclude group: 'javax.activation', module: 'javax.activation-api'
|
exclude group: "javax.activation", module: "javax.activation-api"
|
||||||
exclude group: 'javax.xml.bind', module: 'jaxb-api'
|
exclude group: "javax.xml.bind", module: "jaxb-api"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for reading and writing json"
|
description = "Starter for reading and writing json"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-web'
|
api "org.springframework:spring-web"
|
||||||
api 'com.fasterxml.jackson.core:jackson-databind'
|
api "com.fasterxml.jackson.core:jackson-databind"
|
||||||
api 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8'
|
api "com.fasterxml.jackson.datatype:jackson-datatype-jdk8"
|
||||||
api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
|
api "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
|
||||||
api 'com.fasterxml.jackson.module:jackson-module-parameter-names'
|
api "com.fasterxml.jackson.module:jackson-module-parameter-names"
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for JTA transactions using Atomikos"
|
description = "Starter for JTA transactions using Atomikos"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'com.atomikos:transactions-jms'
|
api "com.atomikos:transactions-jms"
|
||||||
api 'com.atomikos:transactions-jta'
|
api "com.atomikos:transactions-jta"
|
||||||
api 'com.atomikos:transactions-jdbc'
|
api "com.atomikos:transactions-jdbc"
|
||||||
api 'jakarta.transaction:jakarta.transaction-api'
|
api "jakarta.transaction:jakarta.transaction-api"
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for JTA transactions using Bitronix"
|
description = "Starter for JTA transactions using Bitronix"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'jakarta.jms:jakarta.jms-api'
|
api "jakarta.jms:jakarta.jms-api"
|
||||||
api 'jakarta.transaction:jakarta.transaction-api'
|
api "jakarta.transaction:jakarta.transaction-api"
|
||||||
api ('org.codehaus.btm:btm') {
|
api ("org.codehaus.btm:btm") {
|
||||||
exclude group: 'javax.transaction', module: 'jta'
|
exclude group: "javax.transaction", module: "jta"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Log4j2 for logging. An alternative to spring-boot-starter-logging"
|
description = "Starter for using Log4j2 for logging. An alternative to spring-boot-starter-logging"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api 'org.apache.logging.log4j:log4j-slf4j-impl'
|
api "org.apache.logging.log4j:log4j-slf4j-impl"
|
||||||
api 'org.apache.logging.log4j:log4j-core'
|
api "org.apache.logging.log4j:log4j-core"
|
||||||
api 'org.apache.logging.log4j:log4j-jul'
|
api "org.apache.logging.log4j:log4j-jul"
|
||||||
api 'org.slf4j:jul-to-slf4j'
|
api "org.slf4j:jul-to-slf4j"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for logging using Logback. Default logging starter"
|
description = "Starter for logging using Logback. Default logging starter"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api 'ch.qos.logback:logback-classic'
|
api "ch.qos.logback:logback-classic"
|
||||||
api 'org.apache.logging.log4j:log4j-to-slf4j'
|
api "org.apache.logging.log4j:log4j-to-slf4j"
|
||||||
api 'org.slf4j:jul-to-slf4j'
|
api "org.slf4j:jul-to-slf4j"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Java Mail and Spring Framework's email sending support"
|
description = "Starter for using Java Mail and Spring Framework's email sending support"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-context-support'
|
api "org.springframework:spring-context-support"
|
||||||
api 'com.sun.mail:jakarta.mail'
|
api "com.sun.mail:jakarta.mail"
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building web applications using Mustache views"
|
description = "Starter for building web applications using Mustache views"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'com.samskivert:jmustache'
|
api "com.samskivert:jmustache"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Security's OAuth2/OpenID Connect client features"
|
description = "Starter for using Spring Security's OAuth2/OpenID Connect client features"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'com.sun.mail:jakarta.mail'
|
api "com.sun.mail:jakarta.mail"
|
||||||
api 'org.springframework.security:spring-security-config'
|
api "org.springframework.security:spring-security-config"
|
||||||
api 'org.springframework.security:spring-security-core'
|
api "org.springframework.security:spring-security-core"
|
||||||
api ('org.springframework.security:spring-security-oauth2-client') {
|
api ("org.springframework.security:spring-security-oauth2-client") {
|
||||||
exclude group: 'com.sun.mail', module: 'javax.mail'
|
exclude group: "com.sun.mail", module: "javax.mail"
|
||||||
}
|
}
|
||||||
api 'org.springframework.security:spring-security-oauth2-jose'
|
api "org.springframework.security:spring-security-oauth2-jose"
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Security's OAuth2 resource server features"
|
description = "Starter for using Spring Security's OAuth2 resource server features"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework.security:spring-security-config'
|
api "org.springframework.security:spring-security-config"
|
||||||
api 'org.springframework.security:spring-security-core'
|
api "org.springframework.security:spring-security-core"
|
||||||
api 'org.springframework.security:spring-security-oauth2-resource-server'
|
api "org.springframework.security:spring-security-oauth2-resource-server"
|
||||||
api 'org.springframework.security:spring-security-oauth2-jose'
|
api "org.springframework.security:spring-security-oauth2-jose"
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using the Quartz scheduler"
|
description = "Starter for using the Quartz scheduler"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-context-support'
|
api "org.springframework:spring-context-support"
|
||||||
api 'org.springframework:spring-tx'
|
api "org.springframework:spring-tx"
|
||||||
api 'org.quartz-scheduler:quartz'
|
api "org.quartz-scheduler:quartz"
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Reactor Netty as the embedded reactive HTTP server."
|
description = "Starter for using Reactor Netty as the embedded reactive HTTP server."
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api 'io.projectreactor.netty:reactor-netty'
|
api "io.projectreactor.netty:reactor-netty"
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building RSocket clients and servers"
|
description = "Starter for building RSocket clients and servers"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-json')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty")
|
||||||
api 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor'
|
api "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor"
|
||||||
api 'io.rsocket:rsocket-core'
|
api "io.rsocket:rsocket-core"
|
||||||
api 'io.rsocket:rsocket-transport-netty'
|
api "io.rsocket:rsocket-transport-netty"
|
||||||
api 'org.springframework:spring-messaging'
|
api "org.springframework:spring-messaging"
|
||||||
api 'org.springframework.security:spring-security-config'
|
api "org.springframework.security:spring-security-config"
|
||||||
api 'org.springframework.security:spring-security-web'
|
api "org.springframework.security:spring-security-web"
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Security"
|
description = "Starter for using Spring Security"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.springframework:spring-aop'
|
api "org.springframework:spring-aop"
|
||||||
api 'org.springframework.security:spring-security-config'
|
api "org.springframework.security:spring-security-config"
|
||||||
api 'org.springframework.security:spring-security-web'
|
api "org.springframework.security:spring-security-web"
|
||||||
}
|
}
|
||||||
|
@ -1,30 +1,28 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for testing Spring Boot applications with libraries including JUnit, Hamcrest and Mockito"
|
description = "Starter for testing Spring Boot applications with libraries including JUnit, Hamcrest and Mockito"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-test")
|
||||||
api project(':spring-boot-project:spring-boot-test')
|
api project(":spring-boot-project:spring-boot-test-autoconfigure")
|
||||||
api project(':spring-boot-project:spring-boot-test-autoconfigure')
|
api "com.jayway.jsonpath:json-path"
|
||||||
|
api "jakarta.xml.bind:jakarta.xml.bind-api"
|
||||||
api 'com.jayway.jsonpath:json-path'
|
api "org.assertj:assertj-core"
|
||||||
api 'jakarta.xml.bind:jakarta.xml.bind-api'
|
api "org.hamcrest:hamcrest"
|
||||||
api 'org.assertj:assertj-core'
|
api "org.junit.jupiter:junit-jupiter"
|
||||||
api 'org.hamcrest:hamcrest'
|
api ("org.junit.vintage:junit-vintage-engine") {
|
||||||
api 'org.junit.jupiter:junit-jupiter'
|
exclude group: "org.hamcrest", module: "hamcrest-core"
|
||||||
api('org.junit.vintage:junit-vintage-engine') {
|
|
||||||
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
||||||
}
|
}
|
||||||
api 'org.mockito:mockito-core'
|
api "org.mockito:mockito-core"
|
||||||
api 'org.mockito:mockito-junit-jupiter'
|
api "org.mockito:mockito-junit-jupiter"
|
||||||
api 'org.skyscreamer:jsonassert'
|
api "org.skyscreamer:jsonassert"
|
||||||
api 'org.springframework:spring-core'
|
api "org.springframework:spring-core"
|
||||||
api 'org.springframework:spring-test'
|
api "org.springframework:spring-test"
|
||||||
api('org.xmlunit:xmlunit-core') {
|
api ("org.xmlunit:xmlunit-core") {
|
||||||
exclude group: 'javax.xml.bind', module: 'jaxb-api'
|
exclude group: "javax.xml.bind", module: "jaxb-api"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building MVC web applications using Thymeleaf views"
|
description = "Starter for building MVC web applications using Thymeleaf views"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.thymeleaf:thymeleaf-spring5'
|
api "org.thymeleaf:thymeleaf-spring5"
|
||||||
api 'org.thymeleaf.extras:thymeleaf-extras-java8time'
|
api "org.thymeleaf.extras:thymeleaf-extras-java8time"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web"
|
description = "Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api 'jakarta.annotation:jakarta.annotation-api'
|
api "jakarta.annotation:jakarta.annotation-api"
|
||||||
api ('org.apache.tomcat.embed:tomcat-embed-core') {
|
api ("org.apache.tomcat.embed:tomcat-embed-core") {
|
||||||
exclude group: 'org.apache.tomcat', module: 'tomcat-annotations-api'
|
exclude group: "org.apache.tomcat", module: "tomcat-annotations-api"
|
||||||
}
|
}
|
||||||
api 'org.glassfish:jakarta.el'
|
api "org.glassfish:jakarta.el"
|
||||||
api ('org.apache.tomcat.embed:tomcat-embed-websocket') {
|
api ("org.apache.tomcat.embed:tomcat-embed-websocket") {
|
||||||
exclude group: 'org.apache.tomcat', module: 'tomcat-annotations-api'
|
exclude group: "org.apache.tomcat", module: "tomcat-annotations-api"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Undertow as the embedded servlet container. An alternative to spring-boot-starter-tomcat"
|
description = "Starter for using Undertow as the embedded servlet container. An alternative to spring-boot-starter-tomcat"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api 'io.undertow:undertow-core'
|
api "io.undertow:undertow-core"
|
||||||
api ('io.undertow:undertow-servlet') {
|
api ("io.undertow:undertow-servlet") {
|
||||||
exclude group: 'org.jboss.spec.javax.annotation', module: 'jboss-annotations-api_1.2_spec'
|
exclude group: "org.jboss.spec.javax.annotation", module: "jboss-annotations-api_1.2_spec"
|
||||||
exclude group: 'org.jboss.spec.javax.servlet', module: 'jboss-servlet-api_4.0_spec'
|
exclude group: "org.jboss.spec.javax.servlet", module: "jboss-servlet-api_4.0_spec"
|
||||||
}
|
}
|
||||||
api ('io.undertow:undertow-websockets-jsr') {
|
api ("io.undertow:undertow-websockets-jsr") {
|
||||||
exclude group: 'org.jboss.spec.javax.annotation', module: 'jboss-annotations-api_1.2_spec'
|
exclude group: "org.jboss.spec.javax.annotation", module: "jboss-annotations-api_1.2_spec"
|
||||||
exclude group: 'org.jboss.spec.javax.servlet', module: 'jboss-servlet-api_4.0_spec'
|
exclude group: "org.jboss.spec.javax.servlet", module: "jboss-servlet-api_4.0_spec"
|
||||||
}
|
}
|
||||||
api 'jakarta.servlet:jakarta.servlet-api'
|
api "jakarta.servlet:jakarta.servlet-api"
|
||||||
api 'org.glassfish:jakarta.el'
|
api "org.glassfish:jakarta.el"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Java Bean Validation with Hibernate Validator"
|
description = "Starter for using Java Bean Validation with Hibernate Validator"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api 'org.glassfish:jakarta.el'
|
api "org.glassfish:jakarta.el"
|
||||||
api 'org.hibernate.validator:hibernate-validator'
|
api "org.hibernate.validator:hibernate-validator"
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for using Spring Web Services"
|
description = "Starter for using Spring Web Services"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||||
api 'com.sun.xml.messaging.saaj:saaj-impl'
|
api "com.sun.xml.messaging.saaj:saaj-impl"
|
||||||
api 'jakarta.xml.ws:jakarta.xml.ws-api'
|
api "jakarta.xml.ws:jakarta.xml.ws-api"
|
||||||
api 'org.springframework:spring-oxm'
|
api "org.springframework:spring-oxm"
|
||||||
api 'org.springframework.ws:spring-ws-core'
|
api "org.springframework.ws:spring-ws-core"
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container"
|
description = "Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-json')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
||||||
api 'org.springframework:spring-web'
|
api "org.springframework:spring-web"
|
||||||
api 'org.springframework:spring-webmvc'
|
api "org.springframework:spring-webmvc"
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building WebFlux applications using Spring Framework's Reactive Web support"
|
description = "Starter for building WebFlux applications using Spring Framework's Reactive Web support"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-json')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty")
|
||||||
api 'org.springframework:spring-web'
|
api "org.springframework:spring-web"
|
||||||
api 'org.springframework:spring-webflux'
|
api "org.springframework:spring-webflux"
|
||||||
api 'org.synchronoss.cloud:nio-multipart-parser'
|
api "org.synchronoss.cloud:nio-multipart-parser"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Starter for building WebSocket applications using Spring Framework's WebSocket support"
|
description = "Starter for building WebSocket applications using Spring Framework's WebSocket support"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
||||||
api 'org.springframework:spring-messaging'
|
api "org.springframework:spring-messaging"
|
||||||
api 'org.springframework:spring-websocket'
|
api "org.springframework:spring-websocket"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot.starter'
|
id "org.springframework.boot.starter"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Core starter, including auto-configuration support, logging and YAML"
|
description = "Core starter, including auto-configuration support, logging and YAML"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
api platform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
|
api project(":spring-boot-project:spring-boot")
|
||||||
api project(':spring-boot-project:spring-boot')
|
api project(":spring-boot-project:spring-boot-autoconfigure")
|
||||||
api project(':spring-boot-project:spring-boot-autoconfigure')
|
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-logging")
|
||||||
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-logging')
|
api "jakarta.annotation:jakarta.annotation-api"
|
||||||
|
api "org.springframework:spring-core"
|
||||||
api 'jakarta.annotation:jakarta.annotation-api'
|
api "org.yaml:snakeyaml"
|
||||||
api 'org.springframework:spring-core'
|
|
||||||
api 'org.yaml:snakeyaml'
|
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id "java-library"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
id 'org.springframework.boot.deployed'
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot AutoConfigure Annotation Processor'
|
description = "Spring Boot AutoConfigure Annotation Processor"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies'))
|
testImplementation enforcedPlatform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
testImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-test-support')
|
testImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
||||||
testImplementation 'org.assertj:assertj-core'
|
testImplementation "org.assertj:assertj-core"
|
||||||
testImplementation 'org.springframework:spring-core'
|
testImplementation "org.springframework:spring-core"
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,28 +1,28 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id "java-library"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
id 'org.springframework.boot.deployed'
|
id "org.springframework.boot.deployed"
|
||||||
id 'org.springframework.boot.internal-dependency-management'
|
id "org.springframework.boot.internal-dependency-management"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Buildpack Platform'
|
description = "Spring Boot Buildpack Platform"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform(project(':spring-boot-project:spring-boot-parent'))
|
api platform(project(":spring-boot-project:spring-boot-parent"))
|
||||||
api 'com.fasterxml.jackson.core:jackson-databind'
|
api "com.fasterxml.jackson.core:jackson-databind"
|
||||||
api 'com.fasterxml.jackson.module:jackson-module-parameter-names'
|
api "com.fasterxml.jackson.module:jackson-module-parameter-names"
|
||||||
api 'net.java.dev.jna:jna-platform'
|
api "net.java.dev.jna:jna-platform"
|
||||||
api 'org.apache.commons:commons-compress:1.19'
|
api "org.apache.commons:commons-compress:1.19"
|
||||||
api 'org.apache.httpcomponents:httpclient'
|
api "org.apache.httpcomponents:httpclient"
|
||||||
api 'org.springframework:spring-core'
|
api "org.springframework:spring-core"
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-test-support')
|
testImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
||||||
testImplementation 'com.jayway.jsonpath:json-path'
|
testImplementation "com.jayway.jsonpath:json-path"
|
||||||
testImplementation 'org.assertj:assertj-core'
|
testImplementation "org.assertj:assertj-core"
|
||||||
testImplementation 'org.testcontainers:testcontainers'
|
testImplementation "org.testcontainers:testcontainers"
|
||||||
testImplementation 'org.hamcrest:hamcrest'
|
testImplementation "org.hamcrest:hamcrest"
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||||
testImplementation 'org.mockito:mockito-core'
|
testImplementation "org.mockito:mockito-core"
|
||||||
testImplementation 'org.mockito:mockito-junit-jupiter'
|
testImplementation "org.mockito:mockito-junit-jupiter"
|
||||||
testImplementation 'org.skyscreamer:jsonassert'
|
testImplementation "org.skyscreamer:jsonassert"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Configuration Processor Tests"
|
description = "Spring Boot Configuration Processor Tests"
|
||||||
|
|
||||||
dependencies {
|
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 enforcedPlatform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
implementation project(':spring-boot-project:spring-boot')
|
implementation project(":spring-boot-project:spring-boot")
|
||||||
implementation 'jakarta.validation:jakarta.validation-api'
|
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-starters:spring-boot-starter-test")
|
||||||
testImplementation project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata')
|
testImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata")
|
||||||
}
|
}
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Actuator ActiveMQ smoke test'
|
description = "Spring Boot Actuator ActiveMQ smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-activemq')
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-activemq")
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||||
}
|
}
|
@ -1,19 +1,19 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Actuator custom security smoke test'
|
description = "Spring Boot Actuator custom security smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
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-freemarker")
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
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-web")
|
||||||
|
|
||||||
runtimeOnly 'org.jolokia:jolokia-core'
|
runtimeOnly "org.jolokia:jolokia-core"
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||||
|
|
||||||
testRuntimeOnly 'org.apache.httpcomponents:httpclient'
|
testRuntimeOnly "org.apache.httpcomponents:httpclient"
|
||||||
}
|
}
|
@ -1,20 +1,20 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Actuator Log4j 2 smoke test'
|
description = "Spring Boot Actuator Log4j 2 smoke test"
|
||||||
|
|
||||||
configurations.all {
|
configurations.all {
|
||||||
exclude module: 'spring-boot-starter-logging'
|
exclude module: "spring-boot-starter-logging"
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
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-actuator")
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-log4j2')
|
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-security")
|
||||||
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")
|
||||||
}
|
}
|
@ -1,14 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Actuator non-web smoke test'
|
description = "Spring Boot Actuator non-web smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
annotationProcessor project(':spring-boot-project:spring-boot-tools:spring-boot-configuration-processor')
|
annotationProcessor project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-processor")
|
||||||
|
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||||
}
|
}
|
@ -1,15 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Actuator UI smoke test'
|
description = "Spring Boot Actuator UI smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
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-freemarker")
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
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-web")
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||||
}
|
}
|
@ -1,19 +1,19 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Actuator smoke test'
|
description = "Spring Boot Actuator smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-actuator')
|
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-jdbc")
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-security')
|
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-web")
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-validation')
|
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')
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||||
testRuntimeOnly 'org.apache.httpcomponents:httpclient'
|
testRuntimeOnly "org.apache.httpcomponents:httpclient"
|
||||||
}
|
}
|
@ -1,10 +1,10 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot AMQP smoke test'
|
description = "Spring Boot AMQP smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-amqp')
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-amqp")
|
||||||
}
|
}
|
@ -1,10 +1,10 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot animated banner smoke test'
|
description = "Spring Boot animated banner smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
|
||||||
}
|
}
|
@ -1,12 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot AOP smoke test'
|
description = "Spring Boot AOP smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-aop')
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop")
|
||||||
|
|
||||||
testImplementation project(':spring-boot-project:spring-boot-starters:spring-boot-starter-test')
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
||||||
}
|
}
|
@ -1,18 +1,18 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id "java"
|
||||||
id 'org.springframework.boot.conventions'
|
id "org.springframework.boot.conventions"
|
||||||
id 'org.springframework.boot.internal-dependency-management'
|
id "org.springframework.boot.internal-dependency-management"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = 'Spring Boot Atmosphere smoke test'
|
description = "Spring Boot Atmosphere smoke test"
|
||||||
|
|
||||||
dependencies {
|
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")
|
||||||
implementation 'org.atmosphere:atmosphere-runtime:2.4.14'
|
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 enforcedPlatform(project(":spring-boot-project:spring-boot-dependencies"))
|
||||||
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.springframework:spring-websocket'
|
testImplementation "org.springframework:spring-websocket"
|
||||||
}
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue