Advertisement
toujoursseule

Untitled

Nov 14th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <build>
  2. <sourceDirectory>src</sourceDirectory>
  3. <plugins>
  4. <plugin>
  5. <artifactId>maven-compiler-plugin</artifactId>
  6. <version>3.5.1</version>
  7. <configuration>
  8. <source>1.8</source>
  9. <target>1.8</target>
  10. </configuration>
  11. </plugin>
  12. <plugin>
  13. <artifactId>maven-war-plugin</artifactId>
  14. <version>3.0.0</version>
  15. <configuration>
  16. <warSourceDirectory>WebContent</warSourceDirectory>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-context</artifactId>
  25. <version>4.3.8.RELEASE</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-web</artifactId>
  30. <version>4.3.8.RELEASE</version>
  31. </dependency>
  32.  
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-webmvc-portlet</artifactId>
  36. <version>4.3.8.RELEASE</version>
  37. </dependency>
  38.  
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-jdbc</artifactId>
  42. <version>4.3.8.RELEASE</version>
  43. </dependency>
  44.  
  45. <dependency>
  46. <groupId>log4j</groupId>
  47. <artifactId>log4j</artifactId>
  48. <version>1.2.17</version>
  49. </dependency>
  50.  
  51. <dependency>
  52. <groupId>org.apache.xmlbeans</groupId>
  53. <artifactId>xmlbeans</artifactId>
  54. <version>2.6.0</version>
  55. </dependency>
  56. </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement