pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>1.1.3.RELEASE</version>
  10. </parent>
  11. <groupId>com.techempower</groupId>
  12. <artifactId>spring</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <name>Spring MVC sample project</name>
  15. <packaging>war</packaging>
  16. <properties>
  17. <java.version>1.7</java.version>
  18. <tomcat.version>8.0.9</tomcat.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.h2database</groupId>
  23. <artifactId>h2</artifactId>
  24. <scope>runtime</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.zaxxer</groupId>
  32. <artifactId>HikariCP</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-jpa</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.apache.tomcat</groupId>
  40. <artifactId>tomcat-jdbc</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-tomcat</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.thymeleaf</groupId>
  54. <artifactId>thymeleaf-spring4</artifactId>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <finalName>spring</finalName>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. <repositories>
  67. <repository>
  68. <id>bintray</id>
  69. <name>bintray</name>
  70. <url>http://jcenter.bintray.com</url>
  71. </repository>
  72. </repositories>
  73. </project>