pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.0.0.RC4</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.3</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>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-jpa</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-tomcat</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.thymeleaf</groupId>
  45. <artifactId>thymeleaf-spring4</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.yaml</groupId>
  49. <artifactId>snakeyaml</artifactId>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <finalName>spring</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. <repositories>
  62. <repository>
  63. <id>spring-milestones</id>
  64. <url>http://repo.spring.io/milestone</url>
  65. </repository>
  66. <repository>
  67. <id>bintray</id>
  68. <name>bintray</name>
  69. <url>http://jcenter.bintray.com</url>
  70. </repository>
  71. </repositories>
  72. <pluginRepositories>
  73. <pluginRepository>
  74. <id>spring-milestones</id>
  75. <url>http://repo.spring.io/milestone</url>
  76. </pluginRepository>
  77. </pluginRepositories>
  78. </project>