Rename core library to spring-cloud-connectors-core.

This commit is contained in:
Scott Frederick
2017-10-26 13:25:02 -05:00
parent 2528ac2b67
commit 55701034d0
7 changed files with 17 additions and 16 deletions

View File

@@ -121,7 +121,7 @@ Then follow the instructions in the <<Spring Service Connector>> documentation o
=== Non-Spring Applications
The `spring-cloud-core` dependency is included by each cloud connector, so simply include the connectors for the platforms you want. Then follow the <<_spring_cloud_connectors_core,instructions on using the Spring Cloud Connectors API>>.
The `spring-cloud-connectors-core` dependency is included by each cloud connector, so simply include the connectors for the platforms you want. Then follow the <<_spring_cloud_connectors_core,instructions on using the Spring Cloud Connectors API>>.
== Spring Cloud Connectors Core

View File

@@ -1,8 +1,9 @@
rootProject.name = "spring-cloud"
include "${rootProject.name}-core"
include "${rootProject.name}-connectors-core"
include "${rootProject.name}-cloudfoundry-connector"
include "${rootProject.name}-spring-service-connector"
include "${rootProject.name}-heroku-connector"
include "${rootProject.name}-localconfig-connector"
project(":${rootProject.name}-connectors-core").projectDir = file("${rootProject.name}-core")

View File

@@ -1,4 +1,4 @@
description = 'Spring-Cloud Cloud Foundry Connector'
description = 'Spring Cloud Connectors Cloud Foundry Connector'
buildscript {
repositories {
@@ -17,7 +17,7 @@ ext {
}
dependencies {
compile project(':spring-cloud-core')
compile project(':spring-cloud-connectors-core')
compile("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
compile("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
}

View File

@@ -1,4 +1,4 @@
description = 'Spring-Cloud Core'
description = 'Spring Cloud Connectors Core'
configurations {
tests
@@ -7,18 +7,18 @@ configurations {
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output.classesDir
from sourceSets.test.output.classesDirs
}
testJar.dependsOn testClasses
build.dependsOn testJar
artifacts {
tests testJar
tests testJar
}
install {
configuration = configurations.published
install {
configuration = configurations.published
}
tasks.findByPath("artifactoryPublish")?.publishConfigs ('published')

View File

@@ -1,5 +1,5 @@
description = 'Spring-Cloud Heroku Connector'
description = 'Spring Cloud Connectors Heroku Connector'
dependencies {
compile project(':spring-cloud-core')
compile project(':spring-cloud-connectors-core')
}

View File

@@ -1,6 +1,6 @@
description = 'Spring Cloud local-configuration connector'
description = 'Spring Cloud Connectors local-configuration Connector'
dependencies {
compile project(':spring-cloud-core')
compile project(':spring-cloud-connectors-core')
compile 'org.apache.commons:commons-lang3:3.3.2'
}

View File

@@ -1,4 +1,4 @@
description = 'Service Connectors'
description = 'Spring Cloud Connectors Spring Service Connectors'
ext {
springVersion = "5.0.0.RELEASE"
@@ -27,8 +27,8 @@ ext {
}
dependencies {
testCompile project(path: ':spring-cloud-core', configuration: 'tests')
compile project(':spring-cloud-core')
testCompile project(path: ':spring-cloud-connectors-core', configuration: 'tests')
compile project(':spring-cloud-connectors-core')
compile("org.springframework:spring-context:$springVersion")