Browse Source

[bs-86] New name for "applications" - "starters"

[#49047569]
pull/1/head
Dave Syer 13 years ago
parent
commit
eb7bc64e75
  1. 2
      pom.xml
  2. 20
      spring-bootstrap-starters/pom.xml
  3. 6
      spring-bootstrap-starters/spring-bootstrap-batch-starter/pom.xml
  4. 6
      spring-bootstrap-starters/spring-bootstrap-integration-starter/pom.xml
  5. 6
      spring-bootstrap-starters/spring-bootstrap-jpa-starter/pom.xml
  6. 4
      spring-bootstrap-starters/spring-bootstrap-starter/pom.xml
  7. 6
      spring-bootstrap-starters/spring-bootstrap-web-starter/pom.xml

2
pom.xml

@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
<modules>
<module>spring-bootstrap</module>
<module>spring-bootstrap-service</module>
<module>spring-bootstrap-applications</module>
<module>spring-bootstrap-starters</module>
<module>spring-bootstrap-launcher</module>
<module>spring-bootstrap-samples</module>
<module>spring-bootstrap-cli</module>

20
spring-bootstrap-applications/pom.xml → spring-bootstrap-starters/pom.xml

@ -7,18 +7,18 @@ @@ -7,18 +7,18 @@
<artifactId>spring-bootstrap-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>spring-bootstrap-applications</artifactId>
<artifactId>spring-bootstrap-starters</artifactId>
<packaging>pom</packaging>
<properties>
<spring.bootstrap.version>0.0.1-SNAPSHOT</spring.bootstrap.version>
<start-class>org.springframework.bootstrap.main.Spring</start-class>
</properties>
<modules>
<module>spring-bootstrap-application</module>
<module>spring-bootstrap-batch-application</module>
<module>spring-bootstrap-integration-application</module>
<module>spring-bootstrap-jpa-application</module>
<module>spring-bootstrap-web-application</module>
<module>spring-bootstrap-starter</module>
<module>spring-bootstrap-batch-starter</module>
<module>spring-bootstrap-integration-starter</module>
<module>spring-bootstrap-jpa-starter</module>
<module>spring-bootstrap-web-starter</module>
</modules>
<dependencyManagement>
<dependencies>
@ -34,22 +34,22 @@ @@ -34,22 +34,22 @@
</dependency>
<dependency>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-web-application</artifactId>
<artifactId>spring-bootstrap-web-starter</artifactId>
<version>${spring.bootstrap.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-jpa-application</artifactId>
<artifactId>spring-bootstrap-jpa-starter</artifactId>
<version>${spring.bootstrap.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-batch-application</artifactId>
<artifactId>spring-bootstrap-batch-starter</artifactId>
<version>${spring.bootstrap.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-integration-application</artifactId>
<artifactId>spring-bootstrap-integration-starter</artifactId>
<version>${spring.bootstrap.version}</version>
</dependency>
</dependencies>

6
spring-bootstrap-applications/spring-bootstrap-batch-application/pom.xml → spring-bootstrap-starters/spring-bootstrap-batch-starter/pom.xml

@ -4,15 +4,15 @@ @@ -4,15 +4,15 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-applications</artifactId>
<artifactId>spring-bootstrap-starters</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>spring-bootstrap-batch-application</artifactId>
<artifactId>spring-bootstrap-batch-starter</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-bootstrap-application</artifactId>
<artifactId>spring-bootstrap-starter</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>

6
spring-bootstrap-applications/spring-bootstrap-jpa-application/pom.xml → spring-bootstrap-starters/spring-bootstrap-integration-starter/pom.xml

@ -4,15 +4,15 @@ @@ -4,15 +4,15 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-applications</artifactId>
<artifactId>spring-bootstrap-starters</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>spring-bootstrap-jpa-application</artifactId>
<artifactId>spring-bootstrap-integration-starter</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-bootstrap-application</artifactId>
<artifactId>spring-bootstrap-starter</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

6
spring-bootstrap-applications/spring-bootstrap-integration-application/pom.xml → spring-bootstrap-starters/spring-bootstrap-jpa-starter/pom.xml

@ -4,15 +4,15 @@ @@ -4,15 +4,15 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-applications</artifactId>
<artifactId>spring-bootstrap-starters</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>spring-bootstrap-integration-application</artifactId>
<artifactId>spring-bootstrap-jpa-starter</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-bootstrap-application</artifactId>
<artifactId>spring-bootstrap-starter</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

4
spring-bootstrap-applications/spring-bootstrap-application/pom.xml → spring-bootstrap-starters/spring-bootstrap-starter/pom.xml

@ -4,10 +4,10 @@ @@ -4,10 +4,10 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-applications</artifactId>
<artifactId>spring-bootstrap-starters</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>spring-bootstrap-application</artifactId>
<artifactId>spring-bootstrap-starter</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>

6
spring-bootstrap-applications/spring-bootstrap-web-application/pom.xml → spring-bootstrap-starters/spring-bootstrap-web-starter/pom.xml

@ -4,15 +4,15 @@ @@ -4,15 +4,15 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.bootstrap</groupId>
<artifactId>spring-bootstrap-applications</artifactId>
<artifactId>spring-bootstrap-starters</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>spring-bootstrap-web-application</artifactId>
<artifactId>spring-bootstrap-web-starter</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-bootstrap-application</artifactId>
<artifactId>spring-bootstrap-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Loading…
Cancel
Save