Skip to content

Commit

Permalink
Fixes joshlong-attic#15: Wrong version in modules and outdated spring…
Browse files Browse the repository at this point in the history
…-boot version
  • Loading branch information
Forstner, Michael committed Nov 6, 2014
1 parent ef9c9a2 commit 1f0e1b3
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 15 deletions.
2 changes: 1 addition & 1 deletion jersey/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>bootexamples</groupId>
<artifactId>core</artifactId>
<version>1.0.0.RC4</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>jersey</artifactId>

Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.0.0.RELEASE</version>
<version>1.1.8.RELEASE</version>
</parent>
<packaging>pom</packaging>
<groupId>bootexamples</groupId>
<artifactId>core</artifactId>
<version>1.0.0-SNAPSHOT</version>

<properties>
<java.version>1.7</java.version>
Expand Down
2 changes: 1 addition & 1 deletion rest-and-mvc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>bootexamples</groupId>
<artifactId>core</artifactId>
<version>1.0.0.RC4</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>rest-and-mvc</artifactId>
<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions vaadin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>bootexamples</groupId>
<artifactId>core</artifactId>
<version>1.0.0.RC4</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin</artifactId>
<dependencies>
Expand All @@ -21,7 +21,7 @@
</dependency>
<dependency>
<groupId>org.vaadin.spring</groupId>
<version>1.0-SNAPSHOT</version>
<version>0.0.2.1</version>
<artifactId>spring-boot-vaadin</artifactId>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>bootexamples</groupId>
<artifactId>core</artifactId>
<version>1.0.0.RC4</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>velocity</artifactId>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion websockets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>bootexamples</groupId>
<artifactId>core</artifactId>
<version>1.0.0.RC4</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>websockets</artifactId>
Expand Down
21 changes: 13 additions & 8 deletions x-auth-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>bootexamples</groupId>
<artifactId>core</artifactId>
<version>1.0.0.RC4</version>
<version>1.0.0-SNAPSHOT</version>
</parent>


Expand All @@ -18,14 +18,19 @@
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${spring.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${spring.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
Expand Down

0 comments on commit 1f0e1b3

Please sign in to comment.