/pom.xml

http://github.com/yamsellem/JavaScript-Java · XML · 50 lines · 48 code · 2 blank · 0 comment · 0 complexity · 7cea9d7a8d34defc2628afb8e619d01a MD5 · raw file

  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.xebia</groupId>
  5. <artifactId>backbone-jersey</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <dependencies>
  9. <dependency>
  10. <groupId>com.google.guava</groupId>
  11. <artifactId>guava</artifactId>
  12. <version>r08</version>
  13. </dependency>
  14. <dependency>
  15. <groupId>com.sun.jersey</groupId>
  16. <artifactId>jersey-server</artifactId>
  17. <version>1.6</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.sun.jersey</groupId>
  21. <artifactId>jersey-client</artifactId>
  22. <version>1.6</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sun.jersey</groupId>
  27. <artifactId>jersey-json</artifactId>
  28. <version>1.6</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>4.8.2</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.unitils</groupId>
  38. <artifactId>unitils</artifactId>
  39. <version>2.4</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.mortbay.jetty</groupId>
  43. <artifactId>jetty-embedded</artifactId>
  44. <version>6.1.26</version>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>