Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>MyLittlePonies</groupId>
  6. <artifactId>MyLittlePonies</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.7.0</version>
  15. <configuration>
  16. <source>1.8</source>
  17. <target>1.8</target>
  18. </configuration>
  19. </plugin>
  20. <plugin>
  21. <artifactId>maven-war-plugin</artifactId>
  22. <version>3.0.0</version>
  23. <configuration>
  24. <warSourceDirectory>WebContent</warSourceDirectory>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.jboss.resteasy</groupId>
  32. <artifactId>resteasy-jaxrs</artifactId>
  33. <version>3.5.1.Final</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.glassfish.jersey.core</groupId>
  37. <artifactId>jersey-server</artifactId>
  38. <version>2.4.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.glassfish.jersey.containers</groupId>
  42. <artifactId>jersey-container-servlet-core</artifactId>
  43. <version>2.4.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.glassfish.jersey.media</groupId>
  47. <artifactId>jersey-media-json-jackson</artifactId>
  48. <version>2.4.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.glassfish.jersey.media</groupId>
  52. <artifactId>jersey-media-moxy</artifactId>
  53. <version>2.4.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>javax</groupId>
  57. <artifactId>javaee-api</artifactId>
  58. <version>7.0</version>
  59. <type>jar</type>
  60. </dependency>
  61. </dependencies>
  62. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement