|
@@ -1,59 +1,65 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
+
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
- <groupId>com.techempower</groupId>
|
|
|
- <artifactId>spring</artifactId>
|
|
|
- <name>Spring MVC sample project</name>
|
|
|
- <packaging>war</packaging>
|
|
|
- <version>1.0.0-SNAPSHOT</version>
|
|
|
+
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>0.5.0.M5</version>
|
|
|
+ <version>0.5.0.BUILD-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
+
|
|
|
+ <groupId>com.techempower</groupId>
|
|
|
+ <artifactId>spring</artifactId>
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
+ <packaging>war</packaging>
|
|
|
+ <name>Spring MVC sample project</name>
|
|
|
+
|
|
|
<properties>
|
|
|
+ <mysql.version>5.1.23</mysql.version>
|
|
|
+
|
|
|
+ <jackson.version>2.1.1</jackson.version>
|
|
|
<java.version>1.7</java.version>
|
|
|
<spring.version>4.0.0.RC1</spring.version>
|
|
|
- <springboot.version>0.5.0.M5</springboot.version>
|
|
|
+ <spring-data-jpa.version>1.4.2.RELEASE</spring-data-jpa.version>
|
|
|
+ <tomcat.version>8.0.0-RC5</tomcat.version>
|
|
|
</properties>
|
|
|
+
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- <version>${springboot.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
- <version>${springboot.version}</version>
|
|
|
+ <groupId>com.h2database</groupId>
|
|
|
+ <artifactId>h2</artifactId>
|
|
|
+ <scope>runtime</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.thymeleaf</groupId>
|
|
|
- <artifactId>thymeleaf-spring3</artifactId>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql.version}</version>
|
|
|
</dependency>
|
|
|
- <!-- Override Jackson version to match other benchmarks -->
|
|
|
<dependency>
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
- <version>2.1.1</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>5.1.23</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>com.h2database</groupId>
|
|
|
- <artifactId>h2</artifactId>
|
|
|
- <version>1.3.172</version>
|
|
|
+ <groupId>org.thymeleaf</groupId>
|
|
|
+ <artifactId>thymeleaf-spring3</artifactId>
|
|
|
+ <version>${thymeleaf.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.yaml</groupId>
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
+
|
|
|
<build>
|
|
|
+ <finalName>spring</finalName>
|
|
|
+
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
@@ -61,10 +67,19 @@
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
+
|
|
|
<repositories>
|
|
|
<repository>
|
|
|
- <id>spring-snapshots</id>
|
|
|
- <url>http://repo.spring.io/libs-snapshot</url>
|
|
|
+ <id>spring-milestones</id>
|
|
|
+ <url>http://repo.spring.io/milestone</url>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
+
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>spring-milestones</id>
|
|
|
+ <url>http://repo.spring.io/milestone</url>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+
|
|
|
</project>
|