|
@@ -8,7 +8,7 @@
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>1.0.0.RC4</version>
|
|
|
+ <version>1.1.3.RELEASE</version>
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.techempower</groupId>
|
|
@@ -19,7 +19,7 @@
|
|
|
|
|
|
<properties>
|
|
|
<java.version>1.7</java.version>
|
|
|
- <tomcat.version>8.0.3</tomcat.version>
|
|
|
+ <tomcat.version>8.0.9</tomcat.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
@@ -32,9 +32,19 @@
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zaxxer</groupId>
|
|
|
+ <artifactId>HikariCP</artifactId>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.tomcat</groupId>
|
|
|
+ <artifactId>tomcat-jdbc</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
@@ -43,16 +53,11 @@
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
- <scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
<artifactId>thymeleaf-spring4</artifactId>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.yaml</groupId>
|
|
|
- <artifactId>snakeyaml</artifactId>
|
|
|
- </dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
@@ -66,10 +71,6 @@
|
|
|
</build>
|
|
|
|
|
|
<repositories>
|
|
|
- <repository>
|
|
|
- <id>spring-milestones</id>
|
|
|
- <url>http://repo.spring.io/milestone</url>
|
|
|
- </repository>
|
|
|
<repository>
|
|
|
<id>bintray</id>
|
|
|
<name>bintray</name>
|
|
@@ -77,11 +78,4 @@
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
|
|
|
- <pluginRepositories>
|
|
|
- <pluginRepository>
|
|
|
- <id>spring-milestones</id>
|
|
|
- <url>http://repo.spring.io/milestone</url>
|
|
|
- </pluginRepository>
|
|
|
- </pluginRepositories>
|
|
|
-
|
|
|
</project>
|