Switch Java Library declared dependencies that should be exposed in the Java Library (Spring module) API to 'api' scope.

This commit is contained in:
John Blum
2022-02-09 14:21:52 -08:00
parent 43f0565795
commit 5f9e9e75a6
11 changed files with 31 additions and 30 deletions

View File

@@ -4,10 +4,10 @@ description = "Apache Geode Extensions"
dependencies {
implementation "org.apache.geode:geode-core:$apacheGeodeVersion"
implementation "org.apache.geode:geode-cq:$apacheGeodeVersion"
implementation "org.apache.geode:geode-lucene:$apacheGeodeVersion"
implementation "org.apache.geode:geode-wan:$apacheGeodeVersion"
api "org.apache.geode:geode-core:$apacheGeodeVersion"
api "org.apache.geode:geode-cq:$apacheGeodeVersion"
api "org.apache.geode:geode-lucene:$apacheGeodeVersion"
api "org.apache.geode:geode-wan:$apacheGeodeVersion"
implementation "com.fasterxml.jackson.core:jackson-databind"

View File

@@ -4,8 +4,8 @@ description = "Spring Boot Actuator Auto-Configuration for Apache Geode"
dependencies {
implementation project(":spring-geode-actuator")
implementation project(":spring-geode-autoconfigure")
api project(":spring-geode-actuator")
api project(":spring-geode-autoconfigure")
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"

View File

@@ -4,9 +4,9 @@ description = "Spring Boot Actuator for Apache Geode"
dependencies {
implementation project(":spring-geode")
api project(":spring-geode")
implementation "org.springframework.boot:spring-boot-starter-actuator"
api "org.springframework.boot:spring-boot-starter-actuator"
provided "org.apache.geode:geode-logging:$apacheGeodeVersion"
provided "org.apache.geode:geode-serialization:$apacheGeodeVersion"

View File

@@ -8,7 +8,7 @@ description = "Spring Boot Auto-Configuration for Apache Geode"
dependencies {
implementation project(":spring-geode")
api project(":spring-geode")
implementation "jakarta.annotation:jakarta.annotation-api"

View File

@@ -8,9 +8,9 @@ repositories {
dependencies {
implementation project(":spring-geode-autoconfigure")
api project(":spring-geode-autoconfigure")
implementation "org.springframework.cloud:spring-cloud-bindings:${springCloudBindingsVersion}"
api "org.springframework.cloud:spring-cloud-bindings:${springCloudBindingsVersion}"
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"

View File

@@ -4,7 +4,7 @@ description = "Spring Boot Actuator Starter for Apache Geode"
dependencies {
implementation project(":spring-geode-starter")
implementation project(":spring-geode-actuator-autoconfigure")
api project(":spring-geode-starter")
api project(":spring-geode-actuator-autoconfigure")
}

View File

@@ -1,12 +1,12 @@
apply plugin: 'io.spring.convention.spring-module'
description = "Spring Boot Logging Starter for Apache Geode with Logback as the logging provider and adaptation of Log4j to SLF4J"
description = "Spring Boot Logging Starter for Apache Geode with Logback as the default logging provider and adaptation of Log4j to SLF4J"
dependencies {
implementation "ch.qos.logback:logback-classic"
implementation "org.apache.logging.log4j:log4j-to-slf4j"
implementation "org.springframework.boot:spring-boot-starter-logging"
api "ch.qos.logback:logback-classic"
api "org.apache.logging.log4j:log4j-to-slf4j"
api "org.springframework.boot:spring-boot-starter-logging"
testImplementation project(":spring-geode-starter-test")

View File

@@ -4,8 +4,9 @@ description = "Spring Boot Starter for Spring Session using Apache Geode"
dependencies {
implementation project(':spring-geode-starter')
api project(':spring-geode-starter')
implementation 'org.springframework.session:spring-session-data-geode'
api 'org.springframework.session:spring-session-core'
api 'org.springframework.session:spring-session-data-geode'
}

View File

@@ -4,9 +4,9 @@ description = "Spring Boot Test Starter for Apache Geode"
dependencies {
implementation project(':spring-geode-starter')
api project(':spring-geode-starter')
implementation "org.springframework.boot:spring-boot-starter-test"
implementation 'org.springframework.data:spring-data-geode-test'
api "org.springframework.boot:spring-boot-starter-test"
api 'org.springframework.data:spring-data-geode-test'
}

View File

@@ -4,10 +4,10 @@ description = "Spring Boot Starter for Apache Geode"
dependencies {
implementation "org.springframework.boot:spring-boot-starter"
api "org.springframework.boot:spring-boot-starter"
implementation project(':spring-geode')
implementation project(':spring-geode-autoconfigure')
api project(':spring-geode')
api project(':spring-geode-autoconfigure')
runtimeOnly 'org.springframework.shell:spring-shell'

View File

@@ -8,12 +8,12 @@ description = "Spring Boot for Apache Geode"
dependencies {
implementation project(':apache-geode-extensions')
api project(':apache-geode-extensions')
implementation "org.springframework:spring-context-support"
implementation "org.springframework:spring-jcl"
implementation "org.springframework.boot:spring-boot-starter"
implementation "org.springframework.data:spring-data-geode"
api "org.springframework:spring-context-support"
api "org.springframework:spring-jcl"
api "org.springframework.boot:spring-boot-starter"
api "org.springframework.data:spring-data-geode"
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"