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.
This commit is contained in:
Phillip Webb
2020-01-22 11:24:37 -08:00
parent ed6fbc6bec
commit 0209cd3e4c
175 changed files with 3207 additions and 3208 deletions

View File

@@ -1,15 +1,15 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for JMS messaging using Apache ActiveMQ"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-jms'
api ('org.apache.activemq:activemq-broker') {
exclude group: 'org.apache.geronimo.specs', module: 'geronimo-jms_1.1_spec'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-jms"
api ("org.apache.activemq:activemq-broker") {
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_1.1_spec"
}
api 'jakarta.jms:jakarta.jms-api'
api "jakarta.jms:jakarta.jms-api"
}

View File

@@ -1,12 +1,12 @@
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"
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-actuator-autoconfigure')
api 'io.micrometer:micrometer-core'
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-actuator-autoconfigure")
api "io.micrometer:micrometer-core"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring AMQP and Rabbit MQ"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-messaging'
api 'org.springframework.amqp:spring-rabbit'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-messaging"
api "org.springframework.amqp:spring-rabbit"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for aspect-oriented programming with Spring AOP and AspectJ"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-aop'
api 'org.aspectj:aspectjweaver'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-aop"
api "org.aspectj:aspectjweaver"
}

View File

@@ -1,18 +1,18 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for JMS messaging using Apache Artemis"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'jakarta.jms:jakarta.jms-api'
api 'jakarta.json:jakarta.json-api'
api 'org.springframework:spring-jms'
api ('org.apache.activemq:artemis-jms-client') {
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-json_1.0_spec'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "jakarta.jms:jakarta.jms-api"
api "jakarta.json:jakarta.json-api"
api "org.springframework:spring-jms"
api ("org.apache.activemq:artemis-jms-client") {
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-json_1.0_spec"
}
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Batch"
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-jdbc')
api 'org.springframework.batch:spring-batch-core'
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-jdbc")
api "org.springframework.batch:spring-batch-core"
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Framework's caching support"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-context-support'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-context-support"
}

View File

@@ -1,13 +1,13 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Cassandra distributed database and Spring Data Cassandra Reactive"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-tx'
api 'org.springframework.data:spring-data-cassandra'
api 'io.projectreactor:reactor-core'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-tx"
api "org.springframework.data:spring-data-cassandra"
api "io.projectreactor:reactor-core"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Cassandra distributed database and Spring Data Cassandra"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-tx'
api 'org.springframework.data:spring-data-cassandra'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-tx"
api "org.springframework.data:spring-data-cassandra"
}

View File

@@ -1,15 +1,15 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase Reactive"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'io.projectreactor:reactor-core'
api 'io.reactivex:rxjava-reactive-streams'
api ('org.springframework.data:spring-data-couchbase') {
exclude group: 'com.couchbase.client', module: 'encryption'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "io.projectreactor:reactor-core"
api "io.reactivex:rxjava-reactive-streams"
api ("org.springframework.data:spring-data-couchbase") {
exclude group: "com.couchbase.client", module: "encryption"
}
}

View File

@@ -1,13 +1,13 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api ('org.springframework.data:spring-data-couchbase') {
exclude group: 'com.couchbase.client', module: 'encryption'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api ("org.springframework.data:spring-data-couchbase") {
exclude group: "com.couchbase.client", module: "encryption"
}
}

View File

@@ -1,13 +1,13 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Elasticsearch search and analytics engine and Spring Data Elasticsearch"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api ('org.springframework.data:spring-data-elasticsearch') {
exclude group: 'org.elasticsearch.client', module: 'transport'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api ("org.springframework.data:spring-data-elasticsearch") {
exclude group: "org.elasticsearch.client", module: "transport"
}
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Data JDBC"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
api 'org.springframework.data:spring-data-jdbc'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
api "org.springframework.data:spring-data-jdbc"
}

View File

@@ -1,23 +1,23 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Data JPA with Hibernate"
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-jdbc')
api 'jakarta.transaction:jakarta.transaction-api'
api 'jakarta.persistence:jakarta.persistence-api'
api ('org.hibernate:hibernate-core') {
exclude group: 'javax.activation', module: 'javax.activation-api'
exclude group: 'javax.persistence', module: 'javax.persistence-api'
exclude group: 'javax.xml.bind', module: 'jaxb-api'
exclude group: 'org.jboss.spec.javax.transaction', module: 'jboss-transaction-api_1.2_spec'
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-jdbc")
api "jakarta.transaction:jakarta.transaction-api"
api "jakarta.persistence:jakarta.persistence-api"
api ("org.hibernate:hibernate-core") {
exclude group: "javax.activation", module: "javax.activation-api"
exclude group: "javax.persistence", module: "javax.persistence-api"
exclude group: "javax.xml.bind", module: "jaxb-api"
exclude group: "org.jboss.spec.javax.transaction", module: "jboss-transaction-api_1.2_spec"
}
api ('org.springframework.data:spring-data-jpa') {
exclude group: 'org.aspectj', module: 'aspectjrt'
api ("org.springframework.data:spring-data-jpa") {
exclude group: "org.aspectj", module: "aspectjrt"
}
api 'org.springframework:spring-aspects'
api "org.springframework:spring-aspects"
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Data LDAP"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework.data:spring-data-ldap'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework.data:spring-data-ldap"
}

View File

@@ -1,17 +1,17 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB Reactive"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'io.projectreactor:reactor-core'
api 'org.mongodb:mongodb-driver'
api 'org.mongodb:mongodb-driver-async'
api 'org.mongodb:mongodb-driver-reactivestreams'
api ('org.springframework.data:spring-data-mongodb') {
exclude group: 'org.mongodb', module: 'mongo-java-driver'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "io.projectreactor:reactor-core"
api "org.mongodb:mongodb-driver"
api "org.mongodb:mongodb-driver-async"
api "org.mongodb:mongodb-driver-reactivestreams"
api ("org.springframework.data:spring-data-mongodb") {
exclude group: "org.mongodb", module: "mongo-java-driver"
}
}

View File

@@ -1,14 +1,14 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.mongodb:mongodb-driver'
api ('org.springframework.data:spring-data-mongodb') {
exclude group: 'org.mongodb', module: 'mongo-java-driver'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.mongodb:mongodb-driver"
api ("org.springframework.data:spring-data-mongodb") {
exclude group: "org.mongodb", module: "mongo-java-driver"
}
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Neo4j graph database and Spring Data Neo4j"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework.data:spring-data-neo4j'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework.data:spring-data-neo4j"
}

View File

@@ -1,10 +1,10 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis')
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis")
}

View File

@@ -1,12 +1,12 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework.data:spring-data-redis'
api 'io.lettuce:lettuce-core'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework.data:spring-data-redis"
api "io.lettuce:lettuce-core"
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for exposing Spring Data repositories over REST using Spring Data REST"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
api 'org.springframework.data:spring-data-rest-webmvc'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
api "org.springframework.data:spring-data-rest-webmvc"
}

View File

@@ -1,17 +1,17 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using the Apache Solr search platform with Spring Data Solr"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api ('org.apache.solr:solr-solrj') {
exclude group: 'org.slf4j', module: 'jcl-over-slf4j'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api ("org.apache.solr:solr-solrj") {
exclude group: "org.slf4j", module: "jcl-over-slf4j"
}
api 'org.springframework.data:spring-data-solr'
api ('org.apache.httpcomponents:httpmime') {
exclude group: 'commons-logging', module: 'commons-logging'
api "org.springframework.data:spring-data-solr"
api ("org.apache.httpcomponents:httpmime") {
exclude group: "commons-logging", module: "commons-logging"
}
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for building MVC web applications using FreeMarker views"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.freemarker:freemarker'
api 'org.springframework:spring-context-support'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.freemarker:freemarker"
api "org.springframework:spring-context-support"
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for building MVC web applications using Groovy Templates views"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
api 'org.codehaus.groovy:groovy-templates'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
api "org.codehaus.groovy:groovy-templates"
}

View File

@@ -1,12 +1,12 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
api 'org.springframework.hateoas:spring-hateoas'
api 'org.springframework.plugin:spring-plugin-core'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
api "org.springframework.hateoas:spring-hateoas"
api "org.springframework.plugin:spring-plugin-core"
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Integration"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-aop')
api 'org.springframework.integration:spring-integration-core'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop")
api "org.springframework.integration:spring-integration-core"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using JDBC with the HikariCP connection pool"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'com.zaxxer:HikariCP'
api 'org.springframework:spring-jdbc'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "com.zaxxer:HikariCP"
api "org.springframework:spring-jdbc"
}

View File

@@ -1,27 +1,27 @@
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"
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-tomcat')
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-validation')
api 'org.springframework:spring-web'
api 'org.glassfish.jersey.core:jersey-server'
api 'org.glassfish.jersey.containers:jersey-container-servlet-core'
api 'org.glassfish.jersey.containers:jersey-container-servlet'
api ('org.glassfish.jersey.ext:jersey-bean-validation') {
exclude group: 'jakarta.el', module: 'jakarta.el-api'
exclude group: 'org.glassfish', module: 'jakarta.el'
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-tomcat")
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-validation")
api "org.springframework:spring-web"
api "org.glassfish.jersey.core:jersey-server"
api "org.glassfish.jersey.containers:jersey-container-servlet-core"
api "org.glassfish.jersey.containers:jersey-container-servlet"
api ("org.glassfish.jersey.ext:jersey-bean-validation") {
exclude group: "jakarta.el", module: "jakarta.el-api"
exclude group: "org.glassfish", module: "jakarta.el"
}
api 'org.glassfish.jersey.ext:jersey-spring4'
api 'org.glassfish.jersey.media:jersey-media-json-jackson'
api "org.glassfish.jersey.ext:jersey-spring4"
api "org.glassfish.jersey.media:jersey-media-json-jackson"
}
checkRuntimeClasspathForConflicts {
ignore { name -> name.startsWith('org/aopalliance/intercept/') }
ignore { name -> name.startsWith('org/aopalliance/aop/') }
ignore { name -> name.startsWith("org/aopalliance/intercept/") }
ignore { name -> name.startsWith("org/aopalliance/aop/") }
}

View File

@@ -1,25 +1,25 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api 'jakarta.servlet:jakarta.servlet-api'
api 'jakarta.websocket:jakarta.websocket-api'
api 'org.eclipse.jetty:jetty-servlets'
api ('org.eclipse.jetty:jetty-webapp') {
exclude group: 'javax.servlet', module: 'javax.servlet-api'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api "jakarta.servlet:jakarta.servlet-api"
api "jakarta.websocket:jakarta.websocket-api"
api "org.eclipse.jetty:jetty-servlets"
api ("org.eclipse.jetty:jetty-webapp") {
exclude group: "javax.servlet", module: "javax.servlet-api"
}
api ('org.eclipse.jetty.websocket:websocket-server') {
exclude group: 'javax.servlet', module: 'javax.servlet-api'
api ("org.eclipse.jetty.websocket:websocket-server") {
exclude group: "javax.servlet", module: "javax.servlet-api"
}
api ('org.eclipse.jetty.websocket:javax-websocket-server-impl') {
exclude group: 'javax.annotation', module: 'javax.annotation-api'
exclude group: 'javax.servlet', module: 'javax.servlet-api'
exclude group: 'javax.websocket', module: 'javax.websocket-api'
exclude group: 'javax.websocket', module: 'javax.websocket-client-api'
api ("org.eclipse.jetty.websocket:javax-websocket-server-impl") {
exclude group: "javax.annotation", module: "javax.annotation-api"
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "javax.websocket", module: "javax.websocket-api"
exclude group: "javax.websocket", module: "javax.websocket-client-api"
}
api 'org.glassfish:jakarta.el'
api "org.glassfish:jakarta.el"
}

View File

@@ -1,17 +1,17 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc')
api 'jakarta.activation:jakarta.activation-api'
api 'jakarta.xml.bind:jakarta.xml.bind-api'
api 'org.springframework:spring-tx'
api ('org.jooq:jooq') {
exclude group: 'javax.activation', module: 'javax.activation-api'
exclude group: 'javax.xml.bind', module: 'jaxb-api'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc")
api "jakarta.activation:jakarta.activation-api"
api "jakarta.xml.bind:jakarta.xml.bind-api"
api "org.springframework:spring-tx"
api ("org.jooq:jooq") {
exclude group: "javax.activation", module: "javax.activation-api"
exclude group: "javax.xml.bind", module: "jaxb-api"
}
}

View File

@@ -1,15 +1,15 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for reading and writing json"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-web'
api 'com.fasterxml.jackson.core:jackson-databind'
api 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8'
api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
api 'com.fasterxml.jackson.module:jackson-module-parameter-names'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-web"
api "com.fasterxml.jackson.core:jackson-databind"
api "com.fasterxml.jackson.datatype:jackson-datatype-jdk8"
api "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
api "com.fasterxml.jackson.module:jackson-module-parameter-names"
}

View File

@@ -1,14 +1,14 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for JTA transactions using Atomikos"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'com.atomikos:transactions-jms'
api 'com.atomikos:transactions-jta'
api 'com.atomikos:transactions-jdbc'
api 'jakarta.transaction:jakarta.transaction-api'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "com.atomikos:transactions-jms"
api "com.atomikos:transactions-jta"
api "com.atomikos:transactions-jdbc"
api "jakarta.transaction:jakarta.transaction-api"
}

View File

@@ -1,15 +1,15 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for JTA transactions using Bitronix"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'jakarta.jms:jakarta.jms-api'
api 'jakarta.transaction:jakarta.transaction-api'
api ('org.codehaus.btm:btm') {
exclude group: 'javax.transaction', module: 'jta'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "jakarta.jms:jakarta.jms-api"
api "jakarta.transaction:jakarta.transaction-api"
api ("org.codehaus.btm:btm") {
exclude group: "javax.transaction", module: "jta"
}
}

View File

@@ -1,13 +1,13 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api 'org.apache.logging.log4j:log4j-slf4j-impl'
api 'org.apache.logging.log4j:log4j-core'
api 'org.apache.logging.log4j:log4j-jul'
api 'org.slf4j:jul-to-slf4j'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api "org.apache.logging.log4j:log4j-slf4j-impl"
api "org.apache.logging.log4j:log4j-core"
api "org.apache.logging.log4j:log4j-jul"
api "org.slf4j:jul-to-slf4j"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for logging using Logback. Default logging starter"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api 'ch.qos.logback:logback-classic'
api 'org.apache.logging.log4j:log4j-to-slf4j'
api 'org.slf4j:jul-to-slf4j'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api "ch.qos.logback:logback-classic"
api "org.apache.logging.log4j:log4j-to-slf4j"
api "org.slf4j:jul-to-slf4j"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Java Mail and Spring Framework's email sending support"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-context-support'
api 'com.sun.mail:jakarta.mail'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-context-support"
api "com.sun.mail:jakarta.mail"
}

View File

@@ -1,11 +1,11 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for building web applications using Mustache views"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'com.samskivert:jmustache'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "com.samskivert:jmustache"
}

View File

@@ -1,17 +1,17 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Security's OAuth2/OpenID Connect client features"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'com.sun.mail:jakarta.mail'
api 'org.springframework.security:spring-security-config'
api 'org.springframework.security:spring-security-core'
api ('org.springframework.security:spring-security-oauth2-client') {
exclude group: 'com.sun.mail', module: 'javax.mail'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "com.sun.mail:jakarta.mail"
api "org.springframework.security:spring-security-config"
api "org.springframework.security:spring-security-core"
api ("org.springframework.security:spring-security-oauth2-client") {
exclude group: "com.sun.mail", module: "javax.mail"
}
api 'org.springframework.security:spring-security-oauth2-jose'
api "org.springframework.security:spring-security-oauth2-jose"
}

View File

@@ -1,14 +1,14 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Security's OAuth2 resource server features"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework.security:spring-security-config'
api 'org.springframework.security:spring-security-core'
api 'org.springframework.security:spring-security-oauth2-resource-server'
api 'org.springframework.security:spring-security-oauth2-jose'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework.security:spring-security-config"
api "org.springframework.security:spring-security-core"
api "org.springframework.security:spring-security-oauth2-resource-server"
api "org.springframework.security:spring-security-oauth2-jose"
}

View File

@@ -1,7 +1,7 @@
plugins {
id 'org.springframework.boot.conventions'
id 'org.springframework.boot.deployed'
id 'org.springframework.boot.maven-repository'
id "org.springframework.boot.conventions"
id "org.springframework.boot.deployed"
id "org.springframework.boot.maven-repository"
}
description = "Parent pom providing dependency and plugin management for applications built with Maven"
@@ -19,12 +19,12 @@ publishing.publications.withType(MavenPublication) {
root.remove(root.version)
root.description.plus {
properties {
delegate.'java.version'('1.8')
delegate.'resource.delimiter'('@')
delegate.'maven.compiler.source'('${java.version}')
delegate.'maven.compiler.target'('${java.version}')
delegate.'project.build.sourceEncoding'('UTF-8')
delegate.'project.reporting.outputEncoding'('UTF-8')
delegate."java.version"('1.8')
delegate."resource.delimiter"('@')
delegate."maven.compiler.source"('${java.version}')
delegate."maven.compiler.target"('${java.version}')
delegate."project.build.sourceEncoding"('UTF-8')
delegate."project.reporting.outputEncoding"('UTF-8')
}
}
root.issueManagement.plus {

View File

@@ -1,13 +1,13 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using the Quartz scheduler"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-context-support'
api 'org.springframework:spring-tx'
api 'org.quartz-scheduler:quartz'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-context-support"
api "org.springframework:spring-tx"
api "org.quartz-scheduler:quartz"
}

View File

@@ -1,10 +1,10 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Reactor Netty as the embedded reactive HTTP server."
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api 'io.projectreactor.netty:reactor-netty'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api "io.projectreactor.netty:reactor-netty"
}

View File

@@ -1,18 +1,18 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for building RSocket clients and servers"
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-json')
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty')
api 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor'
api 'io.rsocket:rsocket-core'
api 'io.rsocket:rsocket-transport-netty'
api 'org.springframework:spring-messaging'
api 'org.springframework.security:spring-security-config'
api 'org.springframework.security:spring-security-web'
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-json")
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty")
api "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor"
api "io.rsocket:rsocket-core"
api "io.rsocket:rsocket-transport-netty"
api "org.springframework:spring-messaging"
api "org.springframework.security:spring-security-config"
api "org.springframework.security:spring-security-web"
}

View File

@@ -1,13 +1,13 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Security"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.springframework:spring-aop'
api 'org.springframework.security:spring-security-config'
api 'org.springframework.security:spring-security-web'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.springframework:spring-aop"
api "org.springframework.security:spring-security-config"
api "org.springframework.security:spring-security-web"
}

View File

@@ -1,30 +1,28 @@
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"
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-test')
api project(':spring-boot-project:spring-boot-test-autoconfigure')
api 'com.jayway.jsonpath:json-path'
api 'jakarta.xml.bind:jakarta.xml.bind-api'
api 'org.assertj:assertj-core'
api 'org.hamcrest:hamcrest'
api 'org.junit.jupiter:junit-jupiter'
api('org.junit.vintage:junit-vintage-engine') {
exclude group: 'org.hamcrest', module: 'hamcrest-core'
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-test")
api project(":spring-boot-project:spring-boot-test-autoconfigure")
api "com.jayway.jsonpath:json-path"
api "jakarta.xml.bind:jakarta.xml.bind-api"
api "org.assertj:assertj-core"
api "org.hamcrest:hamcrest"
api "org.junit.jupiter:junit-jupiter"
api ("org.junit.vintage:junit-vintage-engine") {
exclude group: "org.hamcrest", module: "hamcrest-core"
}
api 'org.mockito:mockito-core'
api 'org.mockito:mockito-junit-jupiter'
api 'org.skyscreamer:jsonassert'
api 'org.springframework:spring-core'
api 'org.springframework:spring-test'
api('org.xmlunit:xmlunit-core') {
exclude group: 'javax.xml.bind', module: 'jaxb-api'
api "org.mockito:mockito-core"
api "org.mockito:mockito-junit-jupiter"
api "org.skyscreamer:jsonassert"
api "org.springframework:spring-core"
api "org.springframework:spring-test"
api ("org.xmlunit:xmlunit-core") {
exclude group: "javax.xml.bind", module: "jaxb-api"
}
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for building MVC web applications using Thymeleaf views"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.thymeleaf:thymeleaf-spring5'
api 'org.thymeleaf.extras:thymeleaf-extras-java8time'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.thymeleaf:thymeleaf-spring5"
api "org.thymeleaf.extras:thymeleaf-extras-java8time"
}

View File

@@ -1,17 +1,17 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api 'jakarta.annotation:jakarta.annotation-api'
api ('org.apache.tomcat.embed:tomcat-embed-core') {
exclude group: 'org.apache.tomcat', module: 'tomcat-annotations-api'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api "jakarta.annotation:jakarta.annotation-api"
api ("org.apache.tomcat.embed:tomcat-embed-core") {
exclude group: "org.apache.tomcat", module: "tomcat-annotations-api"
}
api 'org.glassfish:jakarta.el'
api ('org.apache.tomcat.embed:tomcat-embed-websocket') {
exclude group: 'org.apache.tomcat', module: 'tomcat-annotations-api'
api "org.glassfish:jakarta.el"
api ("org.apache.tomcat.embed:tomcat-embed-websocket") {
exclude group: "org.apache.tomcat", module: "tomcat-annotations-api"
}
}

View File

@@ -1,20 +1,20 @@
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"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api 'io.undertow:undertow-core'
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.servlet', module: 'jboss-servlet-api_4.0_spec'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api "io.undertow:undertow-core"
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.servlet", module: "jboss-servlet-api_4.0_spec"
}
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.servlet', module: 'jboss-servlet-api_4.0_spec'
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.servlet", module: "jboss-servlet-api_4.0_spec"
}
api 'jakarta.servlet:jakarta.servlet-api'
api 'org.glassfish:jakarta.el'
api "jakarta.servlet:jakarta.servlet-api"
api "org.glassfish:jakarta.el"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Java Bean Validation with Hibernate Validator"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
api 'org.glassfish:jakarta.el'
api 'org.hibernate.validator:hibernate-validator'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter")
api "org.glassfish:jakarta.el"
api "org.hibernate.validator:hibernate-validator"
}

View File

@@ -1,14 +1,14 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for using Spring Web Services"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
api 'com.sun.xml.messaging.saaj:saaj-impl'
api 'jakarta.xml.ws:jakarta.xml.ws-api'
api 'org.springframework:spring-oxm'
api 'org.springframework.ws:spring-ws-core'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
api "com.sun.xml.messaging.saaj:saaj-impl"
api "jakarta.xml.ws:jakarta.xml.ws-api"
api "org.springframework:spring-oxm"
api "org.springframework.ws:spring-ws-core"
}

View File

@@ -1,14 +1,14 @@
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"
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-json')
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat')
api 'org.springframework:spring-web'
api 'org.springframework:spring-webmvc'
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-json")
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
api "org.springframework:spring-web"
api "org.springframework:spring-webmvc"
}

View File

@@ -1,15 +1,15 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for building WebFlux applications using Spring Framework's Reactive Web support"
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-json')
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty')
api 'org.springframework:spring-web'
api 'org.springframework:spring-webflux'
api 'org.synchronoss.cloud:nio-multipart-parser'
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-json")
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-reactor-netty")
api "org.springframework:spring-web"
api "org.springframework:spring-webflux"
api "org.synchronoss.cloud:nio-multipart-parser"
}

View File

@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Starter for building WebSocket applications using Spring Framework's WebSocket support"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-web')
api 'org.springframework:spring-messaging'
api 'org.springframework:spring-websocket'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
api "org.springframework:spring-messaging"
api "org.springframework:spring-websocket"
}

View File

@@ -1,17 +1,15 @@
plugins {
id 'org.springframework.boot.starter'
id "org.springframework.boot.starter"
}
description = "Core starter, including auto-configuration support, logging and YAML"
dependencies {
api platform(project(':spring-boot-project:spring-boot-dependencies'))
api project(':spring-boot-project:spring-boot')
api project(':spring-boot-project:spring-boot-autoconfigure')
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter-logging')
api 'jakarta.annotation:jakarta.annotation-api'
api 'org.springframework:spring-core'
api 'org.yaml:snakeyaml'
api platform(project(":spring-boot-project:spring-boot-dependencies"))
api project(":spring-boot-project:spring-boot")
api project(":spring-boot-project:spring-boot-autoconfigure")
api project(":spring-boot-project:spring-boot-starters:spring-boot-starter-logging")
api "jakarta.annotation:jakarta.annotation-api"
api "org.springframework:spring-core"
api "org.yaml:snakeyaml"
}