pom.xml 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.pivotal.workshop</groupId>
  5. <artifactId>simple-spring-webapp</artifactId>
  6. <packaging>war</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>simple-spring-webapp Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <parent>
  11. <groupId>io.pivotal.education.boot</groupId>
  12. <artifactId>parentProject</artifactId>
  13. <version>1.0.a.RELEASE</version>
  14. <relativePath>../../</relativePath>
  15. </parent>
  16. <properties>
  17. <!-- Generic properties -->
  18. <java.version>1.8</java.version>
  19. <!-- Web -->
  20. <servlet.version>3.1.0</servlet.version>
  21. <!-- Spring -->
  22. <spring-framework.version>5.0.1.RELEASE</spring-framework.version>
  23. <!-- Thymeleaf -->
  24. <thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
  25. <!-- Logging -->
  26. <slf4j.version>1.7.25</slf4j.version>
  27. <logback.version>1.2.3</logback.version>
  28. </properties>
  29. <dependencies>
  30. <!-- Spring MVC -->
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-context</artifactId>
  34. <version>${spring-framework.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-aop</artifactId>
  39. <version>${spring-framework.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-webmvc</artifactId>
  44. <version>${spring-framework.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-web</artifactId>
  49. <version>${spring-framework.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.thymeleaf</groupId>
  53. <artifactId>thymeleaf</artifactId>
  54. <version>${thymeleaf.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.thymeleaf</groupId>
  58. <artifactId>thymeleaf-spring5</artifactId>
  59. <version>${thymeleaf.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.slf4j</groupId>
  63. <artifactId>slf4j-api</artifactId>
  64. <version>${slf4j.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>ch.qos.logback</groupId>
  68. <artifactId>logback-classic</artifactId>
  69. <version>${logback.version}</version>
  70. </dependency>
  71. <!-- Other Web dependencies -->
  72. <dependency>
  73. <groupId>javax.servlet</groupId>
  74. <artifactId>javax.servlet-api</artifactId>
  75. <version>${servlet.version}</version>
  76. <scope>provided</scope>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <finalName>simple-spring-webapp</finalName>
  81. </build>
  82. </project>