Browse Source

Removed spring-boot related version from dependencies of samples

pull/50/head
Biju Kunjummen 13 years ago committed by Phillip Webb
parent
commit
fa3b593568
  1. 1
      spring-boot-samples/spring-boot-sample-batch/pom.xml
  2. 2
      spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
  3. 1
      spring-boot-samples/spring-boot-sample-integration/pom.xml
  4. 2
      spring-boot-samples/spring-boot-sample-jetty/pom.xml
  5. 1
      spring-boot-samples/spring-boot-sample-profile/pom.xml
  6. 1
      spring-boot-samples/spring-boot-sample-simple/pom.xml
  7. 2
      spring-boot-samples/spring-boot-sample-tomcat/pom.xml
  8. 2
      spring-boot-samples/spring-boot-sample-traditional/pom.xml
  9. 2
      spring-boot-samples/spring-boot-sample-web-static/pom.xml
  10. 1
      spring-boot-samples/spring-boot-sample-web-ui/pom.xml
  11. 1
      spring-boot-samples/spring-boot-sample-xml/pom.xml

1
spring-boot-samples/spring-boot-sample-batch/pom.xml

@ -17,7 +17,6 @@ @@ -17,7 +17,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-batch</artifactId>
<version>${project.version}</version>
</dependency>
<!-- This dependency is just for our integration testing, your app would
not need it -->

2
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml

@ -17,12 +17,10 @@ @@ -17,12 +17,10 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>

1
spring-boot-samples/spring-boot-sample-integration/pom.xml

@ -17,7 +17,6 @@ @@ -17,7 +17,6 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-integration</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>

2
spring-boot-samples/spring-boot-sample-jetty/pom.xml

@ -17,12 +17,10 @@ @@ -17,12 +17,10 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>

1
spring-boot-samples/spring-boot-sample-profile/pom.xml

@ -17,7 +17,6 @@ @@ -17,7 +17,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>

1
spring-boot-samples/spring-boot-sample-simple/pom.xml

@ -17,7 +17,6 @@ @@ -17,7 +17,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<!-- This dependency is just for our integration testing, your app would
not need it -->

2
spring-boot-samples/spring-boot-sample-tomcat/pom.xml

@ -17,12 +17,10 @@ @@ -17,12 +17,10 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>

2
spring-boot-samples/spring-boot-sample-traditional/pom.xml

@ -18,7 +18,6 @@ @@ -18,7 +18,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
@ -28,7 +27,6 @@ @@ -28,7 +27,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>

2
spring-boot-samples/spring-boot-sample-web-static/pom.xml

@ -17,12 +17,10 @@ @@ -17,12 +17,10 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>

1
spring-boot-samples/spring-boot-sample-web-ui/pom.xml

@ -17,7 +17,6 @@ @@ -17,7 +17,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>

1
spring-boot-samples/spring-boot-sample-xml/pom.xml

@ -17,7 +17,6 @@ @@ -17,7 +17,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<!-- This dependency is just for our integration testing, your app would
not need it -->

Loading…
Cancel
Save