Advertisement
Guest User

My pom.xml

a guest
Apr 2nd, 2017
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.example.j2eeapp</groupId>
  5. <artifactId>j2eeapplication</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <name>J2EE Applications Example</name>
  9. <properties>
  10. <tomcat.version>8.0.28</tomcat.version>
  11. </properties>
  12. <dependencies>
  13. <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
  14. <dependency>
  15. <groupId>org.hibernate</groupId>
  16. <artifactId>hibernate-core</artifactId>
  17. <version>5.2.9.Final</version>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
  20. <dependency>
  21. <groupId>javax.servlet</groupId>
  22. <artifactId>servlet-api</artifactId>
  23. <version>2.5</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.httpcomponents</groupId>
  27. <artifactId>httpclient</artifactId>
  28. <version>4.5.3</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.httpcomponents</groupId>
  32. <artifactId>httpclient-cache</artifactId>
  33. <version>4.5.3</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpmime</artifactId>
  38. <version>4.5.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.httpcomponents</groupId>
  42. <artifactId>fluent-hc</artifactId>
  43. <version>4.5.3</version>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
  46. <dependency>
  47. <groupId>com.googlecode.json-simple</groupId>
  48. <artifactId>json-simple</artifactId>
  49. <version>1.1</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. </plugins>
  55. </build>
  56. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement