Skip to content

Commit 18fe287

Browse files
committed
pom.xml: update Spring Boot to 1.3.0.M5
This also updates Spring Framework to 4.2.1.RELEASE. @see http://spring.io/blog/2015/09/04/spring-boot-1-3-0-m5-available-now @see http://spring.io/blog/2015/09/01/spring-framework-4-2-1-available-now No functional changes.
1 parent 096e394 commit 18fe287

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<packaging>war</packaging>
1111

1212
<parent>
13-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-parent/pom.xml -->
13+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-parent/pom.xml -->
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>1.3.0.M4</version>
16+
<version>1.3.0.M5</version>
1717
</parent>
1818

1919
<properties>
@@ -70,7 +70,7 @@
7070

7171
<!--
7272
Definitions and redefinitions of default values from spring-boot-dependencies:
73-
https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-dependencies/pom.xml
73+
https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-dependencies/pom.xml
7474
-->
7575
<commons-beanutils.version>1.9.2</commons-beanutils.version>
7676
<commons-collections.version>3.2.1</commons-collections.version>
@@ -96,7 +96,7 @@
9696

9797
<dependencies>
9898

99-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter/pom.xml -->
99+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter/pom.xml -->
100100
<dependency>
101101
<groupId>org.springframework.boot</groupId>
102102
<artifactId>spring-boot-starter</artifactId>
@@ -113,7 +113,7 @@
113113
</exclusions>
114114
</dependency>
115115

116-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-web/pom.xml -->
116+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-web/pom.xml -->
117117
<dependency>
118118
<groupId>org.springframework.boot</groupId>
119119
<artifactId>spring-boot-starter-web</artifactId>
@@ -126,7 +126,7 @@
126126
</exclusions>
127127
</dependency>
128128

129-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-jetty/pom.xml -->
129+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-jetty/pom.xml -->
130130
<dependency>
131131
<groupId>org.springframework.boot</groupId>
132132
<artifactId>spring-boot-starter-jetty</artifactId>
@@ -142,19 +142,19 @@
142142
</exclusions>
143143
</dependency>
144144

145-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-log4j/pom.xml -->
145+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-log4j/pom.xml -->
146146
<dependency>
147147
<groupId>org.springframework.boot</groupId>
148148
<artifactId>spring-boot-starter-log4j</artifactId>
149149
</dependency>
150150

151-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-security/pom.xml -->
151+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-security/pom.xml -->
152152
<dependency>
153153
<groupId>org.springframework.boot</groupId>
154154
<artifactId>spring-boot-starter-security</artifactId>
155155
</dependency>
156156

157-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml -->
157+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml -->
158158
<dependency>
159159
<groupId>org.springframework.boot</groupId>
160160
<artifactId>spring-boot-starter-thymeleaf</artifactId>
@@ -166,13 +166,13 @@
166166
</exclusions>
167167
</dependency>
168168

169-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-mail/pom.xml -->
169+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-mail/pom.xml -->
170170
<dependency>
171171
<groupId>org.springframework.boot</groupId>
172172
<artifactId>spring-boot-starter-mail</artifactId>
173173
</dependency>
174174

175-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-jdbc/pom.xml -->
175+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-jdbc/pom.xml -->
176176
<dependency>
177177
<groupId>org.springframework.boot</groupId>
178178
<artifactId>spring-boot-starter-jdbc</artifactId>
@@ -184,7 +184,7 @@
184184
</exclusions>
185185
</dependency>
186186

187-
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M4/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml -->
187+
<!-- https://github.com/spring-projects/spring-boot/blob/v1.3.0.M5/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml -->
188188
<dependency>
189189
<groupId>org.springframework.boot</groupId>
190190
<artifactId>spring-boot-starter-data-jpa</artifactId>

0 commit comments

Comments
 (0)