Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. <packaging>war</packaging>
  2.  
  3. <dependencies>
  4. <dependency>
  5. <groupId>javax.servlet</groupId>
  6. <artifactId>javax.servlet-api</artifactId>
  7. <version>3.1.0</version>
  8. </dependency>
  9. <dependency>
  10. <groupId>org.springframework</groupId>
  11. <artifactId>spring-core</artifactId>
  12. <version>5.1.3.RELEASE</version>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-beans</artifactId>
  17. <version>5.1.3.RELEASE</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-context</artifactId>
  22. <version>5.1.3.RELEASE</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-web</artifactId>
  27. <version>5.1.3.RELEASE</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-webmvc</artifactId>
  32. <version>5.1.3.RELEASE</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-jdbc</artifactId>
  37. <version>5.1.3.RELEASE</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.xerial</groupId>
  41. <artifactId>sqlite-jdbc</artifactId>
  42. <version>3.25.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>jstl</groupId>
  46. <artifactId>jstl</artifactId>
  47. <version>1.2</version>
  48. </dependency>
  49. </dependencies>
  50.  
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.eclipse.jetty</groupId>
  55. <artifactId>jetty-maven-plugin</artifactId>
  56. <version>9.4.12.v20180830</version>
  57. </plugin>
  58. </plugins>
  59. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement