Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 KB | None | 0 0
  1.  
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>vacmon</groupId>
  6. <artifactId>vacmon</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <build>
  10. <sourceDirectory>src</sourceDirectory>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <version>3.3</version>
  15. <configuration>
  16. <source>1.8</source>
  17. <target>1.8</target>
  18. </configuration>
  19. </plugin>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-war-plugin</artifactId>
  23. <version>3.0.0</version>
  24. <configuration>
  25. <webResources>
  26. <resource>
  27. <!-- this is relative to the pom.xml directory -->
  28. <directory>WebContent/WEB-INF/layout</directory>
  29. <targetPath>WEB-INF/layout</targetPath>
  30. </resource>
  31. <resource>
  32. <!-- this is relative to the pom.xml directory -->
  33. <directory>WebContent/resources</directory>
  34. <targetPath>resources</targetPath>
  35. </resource>
  36. </webResources>
  37. </configuration>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-webmvc</artifactId>
  45. <version>4.3.7.RELEASE</version>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>commons-logging</groupId>
  49. <artifactId>commons-logging</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.security</groupId>
  55. <artifactId>spring-security-web</artifactId>
  56. <version>4.2.2.RELEASE</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.tiles</groupId>
  60. <artifactId>tiles-jsp</artifactId>
  61. <version>3.0.5</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>jstl</groupId>
  65. <artifactId>jstl</artifactId>
  66. <version>1.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>javax.servlet</groupId>
  70. <artifactId>javax.servlet-api</artifactId>
  71. <version>3.1.0</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.slf4j</groupId>
  76. <artifactId>jcl-over-slf4j</artifactId>
  77. <version>1.5.8</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.slf4j</groupId>
  81. <artifactId>slf4j-api</artifactId>
  82. <version>1.5.8</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.slf4j</groupId>
  86. <artifactId>slf4j-log4j12</artifactId>
  87. <version>1.5.8</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.fasterxml.jackson.core</groupId>
  91. <artifactId>jackson-core</artifactId>
  92. <version>2.8.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.fasterxml.jackson.core</groupId>
  96. <artifactId>jackson-databind</artifactId>
  97. <version>2.8.2</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-test</artifactId>
  102. <version>4.3.0.RELEASE</version>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.hamcrest</groupId>
  107. <artifactId>hamcrest-all</artifactId>
  108. <version>1.3</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.mockito</groupId>
  113. <artifactId>mockito-core</artifactId>
  114. <version>1.10.19</version>
  115. <exclusions>
  116. <exclusion>
  117. <groupId>org.hamcrest</groupId>
  118. <artifactId>hamcrest-core</artifactId>
  119. </exclusion>
  120. </exclusions>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.jayway.jsonpath</groupId>
  125. <artifactId>json-path-assert</artifactId>
  126. <version>2.2.0</version>
  127. <scope>test</scope>
  128. <exclusions>
  129. <exclusion>
  130. <groupId>org.hamcrest</groupId>
  131. <artifactId>hamcrest-core</artifactId>
  132. </exclusion>
  133. <exclusion>
  134. <groupId>org.slf4j</groupId>
  135. <artifactId>slf4j-api</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139.  
  140. <!-- https://mvnrepository.com/artifact/junit/junit -->
  141. <dependency>
  142. <groupId>junit</groupId>
  143. <artifactId>junit</artifactId>
  144. <version>4.8.1</version>
  145. </dependency>
  146.  
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-starter-test</artifactId>
  150. <version>1.5.3.RELEASE</version>
  151. </dependency>
  152.  
  153. <dependency>
  154. <groupId>com.jayway.restassured</groupId>
  155. <artifactId>rest-assured</artifactId>
  156. <version>2.9.0</version>
  157. <scope>test</scope>
  158. </dependency>
  159.  
  160.  
  161. <dependency>
  162. <groupId>org.springframework</groupId>
  163. <artifactId>spring-jdbc</artifactId>
  164. <version>4.3.7.RELEASE</version>
  165. </dependency>
  166. </dependencies>
  167.  
  168.  
  169.  
  170.  
  171. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement