Skip to content

Commit d1aab8b

Browse files
committed
pom.xml update dependencies
1 parent ce05e41 commit d1aab8b

File tree

1 file changed

+9
-41
lines changed

1 file changed

+9
-41
lines changed

quickstart/pom.xml

Lines changed: 9 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>1.5.4.RELEASE</version>
16+
<version>1.5.9.RELEASE</version>
1717
</parent>
1818

1919
<properties>
@@ -22,12 +22,7 @@
2222
resources, i.e. build is platform dependent! -->
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424

25-
<!-- maven-compiler-plugin -->
26-
<maven.compiler.target>1.8</maven.compiler.target>
27-
<maven.compiler.source>1.8</maven.compiler.source>
28-
29-
<hibernate.version>5.0.2.Final</hibernate.version>
30-
<spring-security.version>4.0.4.RELEASE</spring-security.version>
25+
<java.version>1.8</java.version>
3126

3227
<!-- ~~~~~~~~ -->
3328
<!-- Database -->
@@ -39,7 +34,7 @@
3934
<!-- H2 DATABASE SETTINGS -->
4035
<jdbc.groupId>com.h2database</jdbc.groupId>
4136
<jdbc.artifactId>h2</jdbc.artifactId>
42-
<jdbc.version>1.4.187</jdbc.version>
37+
<jdbc.version>${h2.version}</jdbc.version>
4338

4439
<jdbc.driver>org.h2.Driver</jdbc.driver>
4540
<jdbc.url>jdbc:h2:${project.build.directory}/db/angulardb;MVCC=TRUE;FILE_LOCK=NO</jdbc.url>
@@ -55,7 +50,7 @@
5550
<!-- MYSQL DATABASE SETTINGS
5651
<jdbc.groupId>mysql</jdbc.groupId>
5752
<jdbc.artifactId>mysql-connector-java</jdbc.artifactId>
58-
<jdbc.version>5.1.40</jdbc.version>
53+
<jdbc.version>${mysql.version}</jdbc.version>
5954
6055
<jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver>
6156
<jdbc.url>jdbc:mysql://127.0.0.1:3306/angulardb</jdbc.url>
@@ -100,21 +95,17 @@
10095
<hibernate.use.second.level.cache>false</hibernate.use.second.level.cache>
10196
<hibernate.use.query.cache>false</hibernate.use.query.cache>
10297

103-
<!-- use latest versions-->
104-
<spring-data-releasetrain.version>Hopper-SR11</spring-data-releasetrain.version>
105-
10698
</properties>
10799

108100
<dependencies>
109101
<dependency>
110102
<groupId>${jdbc.groupId}</groupId>
111103
<artifactId>${jdbc.artifactId}</artifactId>
112-
<version>${jdbc.version}</version>
113104
</dependency>
114105
<dependency>
115106
<groupId>org.hibernate</groupId>
116107
<artifactId>hibernate-java8</artifactId>
117-
<version>5.0.2.Final</version>
108+
<version>${hibernate.version}</version>
118109
</dependency>
119110
<!-- Celerio code completion support in velocity templates -->
120111
<!-- See pack-angular/META-INF/velocity_implicit.vm -->
@@ -138,14 +129,6 @@
138129
<groupId>org.springframework.boot</groupId>
139130
<artifactId>spring-boot-starter-web</artifactId>
140131
</dependency>
141-
<dependency>
142-
<groupId>com.fasterxml.jackson.core</groupId>
143-
<artifactId>jackson-annotations</artifactId>
144-
</dependency>
145-
<dependency>
146-
<groupId>com.fasterxml.jackson.core</groupId>
147-
<artifactId>jackson-databind</artifactId>
148-
</dependency>
149132
<dependency>
150133
<groupId>com.fasterxml.jackson.datatype</groupId>
151134
<artifactId>jackson-datatype-jsr310</artifactId>
@@ -191,16 +174,11 @@
191174
<artifactId>spring-boot-starter-test</artifactId>
192175
<scope>test</scope>
193176
</dependency>
194-
<dependency>
195-
<groupId>junit</groupId>
196-
<artifactId>junit</artifactId>
197-
<version>4.12</version>
198-
<scope>test</scope>
199-
</dependency>
177+
200178
<dependency>
201179
<groupId>org.mockito</groupId>
202180
<artifactId>mockito-all</artifactId>
203-
<version>1.9.5</version>
181+
<version>1.10.19</version>
204182
<scope>test</scope>
205183
</dependency>
206184
<dependency>
@@ -264,7 +242,7 @@
264242
<!-- http://maven.apache.org/plugins/maven-resources-plugin/ -->
265243
<groupId>org.apache.maven.plugins</groupId>
266244
<artifactId>maven-resources-plugin</artifactId>
267-
<version>2.7</version>
245+
<version>3.0.2</version>
268246
<configuration>
269247
<delimiters>
270248
<delimiter>@*@</delimiter>
@@ -282,7 +260,7 @@
282260
<!-- http://mojo.codehaus.org/build-helper-maven-plugin/ -->
283261
<groupId>org.codehaus.mojo</groupId>
284262
<artifactId>build-helper-maven-plugin</artifactId>
285-
<version>1.9.1</version>
263+
<version>3.0.0</version>
286264
<executions>
287265
<execution>
288266
<id>Adding generated java folder to build</id>
@@ -314,16 +292,6 @@
314292
</plugin>
315293

316294

317-
<!-- Compiler plugin enforces Java compatibility and activates
318-
annotation processors -->
319-
<plugin>
320-
<artifactId>maven-compiler-plugin</artifactId>
321-
<version>3.1</version>
322-
<configuration>
323-
<source>${maven.compiler.source}</source>
324-
<target>${maven.compiler.target}</target>
325-
</configuration>
326-
</plugin>
327295
</plugins>
328296
</build>
329297

0 commit comments

Comments
 (0)