|
13 | 13 | <parent> |
14 | 14 | <groupId>org.springframework.boot</groupId> |
15 | 15 | <artifactId>spring-boot-starter-parent</artifactId> |
16 | | - <version>1.5.4.RELEASE</version> |
| 16 | + <version>1.5.9.RELEASE</version> |
17 | 17 | </parent> |
18 | 18 |
|
19 | 19 | <properties> |
|
22 | 22 | resources, i.e. build is platform dependent! --> |
23 | 23 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
24 | 24 |
|
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> |
31 | 26 |
|
32 | 27 | <!-- ~~~~~~~~ --> |
33 | 28 | <!-- Database --> |
|
39 | 34 | <!-- H2 DATABASE SETTINGS --> |
40 | 35 | <jdbc.groupId>com.h2database</jdbc.groupId> |
41 | 36 | <jdbc.artifactId>h2</jdbc.artifactId> |
42 | | - <jdbc.version>1.4.187</jdbc.version> |
| 37 | + <jdbc.version>${h2.version}</jdbc.version> |
43 | 38 |
|
44 | 39 | <jdbc.driver>org.h2.Driver</jdbc.driver> |
45 | 40 | <jdbc.url>jdbc:h2:${project.build.directory}/db/angulardb;MVCC=TRUE;FILE_LOCK=NO</jdbc.url> |
|
55 | 50 | <!-- MYSQL DATABASE SETTINGS |
56 | 51 | <jdbc.groupId>mysql</jdbc.groupId> |
57 | 52 | <jdbc.artifactId>mysql-connector-java</jdbc.artifactId> |
58 | | - <jdbc.version>5.1.40</jdbc.version> |
| 53 | + <jdbc.version>${mysql.version}</jdbc.version> |
59 | 54 |
|
60 | 55 | <jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver> |
61 | 56 | <jdbc.url>jdbc:mysql://127.0.0.1:3306/angulardb</jdbc.url> |
|
100 | 95 | <hibernate.use.second.level.cache>false</hibernate.use.second.level.cache> |
101 | 96 | <hibernate.use.query.cache>false</hibernate.use.query.cache> |
102 | 97 |
|
103 | | - <!-- use latest versions--> |
104 | | - <spring-data-releasetrain.version>Hopper-SR11</spring-data-releasetrain.version> |
105 | | - |
106 | 98 | </properties> |
107 | 99 |
|
108 | 100 | <dependencies> |
109 | 101 | <dependency> |
110 | 102 | <groupId>${jdbc.groupId}</groupId> |
111 | 103 | <artifactId>${jdbc.artifactId}</artifactId> |
112 | | - <version>${jdbc.version}</version> |
113 | 104 | </dependency> |
114 | 105 | <dependency> |
115 | 106 | <groupId>org.hibernate</groupId> |
116 | 107 | <artifactId>hibernate-java8</artifactId> |
117 | | - <version>5.0.2.Final</version> |
| 108 | + <version>${hibernate.version}</version> |
118 | 109 | </dependency> |
119 | 110 | <!-- Celerio code completion support in velocity templates --> |
120 | 111 | <!-- See pack-angular/META-INF/velocity_implicit.vm --> |
|
138 | 129 | <groupId>org.springframework.boot</groupId> |
139 | 130 | <artifactId>spring-boot-starter-web</artifactId> |
140 | 131 | </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> |
149 | 132 | <dependency> |
150 | 133 | <groupId>com.fasterxml.jackson.datatype</groupId> |
151 | 134 | <artifactId>jackson-datatype-jsr310</artifactId> |
|
191 | 174 | <artifactId>spring-boot-starter-test</artifactId> |
192 | 175 | <scope>test</scope> |
193 | 176 | </dependency> |
194 | | - <dependency> |
195 | | - <groupId>junit</groupId> |
196 | | - <artifactId>junit</artifactId> |
197 | | - <version>4.12</version> |
198 | | - <scope>test</scope> |
199 | | - </dependency> |
| 177 | + |
200 | 178 | <dependency> |
201 | 179 | <groupId>org.mockito</groupId> |
202 | 180 | <artifactId>mockito-all</artifactId> |
203 | | - <version>1.9.5</version> |
| 181 | + <version>1.10.19</version> |
204 | 182 | <scope>test</scope> |
205 | 183 | </dependency> |
206 | 184 | <dependency> |
|
264 | 242 | <!-- http://maven.apache.org/plugins/maven-resources-plugin/ --> |
265 | 243 | <groupId>org.apache.maven.plugins</groupId> |
266 | 244 | <artifactId>maven-resources-plugin</artifactId> |
267 | | - <version>2.7</version> |
| 245 | + <version>3.0.2</version> |
268 | 246 | <configuration> |
269 | 247 | <delimiters> |
270 | 248 | <delimiter>@*@</delimiter> |
|
282 | 260 | <!-- http://mojo.codehaus.org/build-helper-maven-plugin/ --> |
283 | 261 | <groupId>org.codehaus.mojo</groupId> |
284 | 262 | <artifactId>build-helper-maven-plugin</artifactId> |
285 | | - <version>1.9.1</version> |
| 263 | + <version>3.0.0</version> |
286 | 264 | <executions> |
287 | 265 | <execution> |
288 | 266 | <id>Adding generated java folder to build</id> |
|
314 | 292 | </plugin> |
315 | 293 |
|
316 | 294 |
|
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> |
327 | 295 | </plugins> |
328 | 296 | </build> |
329 | 297 |
|
|
0 commit comments