Harmonize names for subprojects.

- Each subproject carries the groupId as org.springframework.cloud.
- Removed "spring-cloud" prefix from each subproject.
- Only "spring-service-connector" has "spring" in its name, since it depends
  on Spring heaviliy and create spring-data objects.
- Also added a top-level pom.xml
This commit is contained in:
Ramnivas Laddad
2013-05-09 15:15:24 -07:00
parent 94b77ede5a
commit 69a8d46a29
145 changed files with 33 additions and 17 deletions

View File

@@ -9,6 +9,6 @@ The core concepts used in this project are:
The project comprises of three subprojects:
1. **spring-cloud-core**: Core library that is cloud agnostic and Spring-agnostic. Provides entry point for application developers that choose to programmatically access cloud services and application information. It also provides an extension mechanism to contribute cloud connectors and service connector creators.
2. **spring-cloud-service-connector**: Library that provides service connectors creators for java.sql.DataSource and various connection factories spring-data projects.
3. **spring-cloudfoundry-connector**: Cloud connector for [Cloud Foundry](http://www.cloudfoundry.com).
1. **core**: Core library that is cloud agnostic and Spring-agnostic. Provides entry point for application developers that choose to programmatically access cloud services and application information. It also provides an extension mechanism to contribute cloud connectors and service connector creators.
2. **spring-service-connector**: Library that provides service connectors creators for javax.sql.DataSource and various connection factories spring-data projects.
3. **cloudfoundry-connector**: Cloud connector for [Cloud Foundry](http://www.cloudfoundry.com).

View File

@@ -3,8 +3,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>spring-cloudfoundry-connector</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>cloudfoundry-connector</artifactId>
<version>1.0.0.CI-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Spring-Cloud CloudFoundry Connector</name>
@@ -21,8 +21,8 @@
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-cloud-service-connector</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-service-connector</artifactId>
<version>1.0.0.CI-SNAPSHOT</version>
</dependency>
<dependency>

View File

@@ -3,11 +3,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>spring-cloud-core</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>core</artifactId>
<version>1.0.0.CI-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Spring Cloud Core</name>
<name>Cloud Core</name>
<url>http://www.springframework.org</url>
<description>
<![CDATA[
@@ -23,7 +23,7 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
<scope>provided</scope>
</dependency>
</dependencies>

16
pom.xml Normal file
View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.cloud</groupId>
<artifactId>cloud</artifactId>
<packaging>pom</packaging>
<name>Spring Cloud</name>
<version>0.1.0-BUILD-SNAPSHOT</version>
<modules>
<module>core</module>
<module>spring-service-connector</module>
<module>cloudfoundry-connector</module>
</modules>
</project>

View File

@@ -3,15 +3,15 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>spring-cloud-service-connector</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-service-connector</artifactId>
<version>1.0.0.CI-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Spring Cloud</name>
<name>Service Connectors</name>
<url>http://www.springframework.org</url>
<description>
<![CDATA[
This project is a minimal jar utility with Spring configuration.
Service Connectors for DataSource and spring-data connector factories
]]>
</description>
<properties>
@@ -36,8 +36,8 @@
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-cloud-core</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>core</artifactId>
<version>1.0.0.CI-SNAPSHOT</version>
</dependency>
<dependency>

Some files were not shown because too many files have changed in this diff Show More