A simple DropWizard-ish framework for building REST apps in Jersey/JAX-RS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.6 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2013-2014 Jonathan Cobb
  4. This code is available under the Apache License, version 2: http://www.apache.org/licenses/LICENSE-2.0.html
  5. -->
  6. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  7. <modelVersion>4.0.0</modelVersion>
  8. <parent>
  9. <groupId>org.cobbzilla</groupId>
  10. <artifactId>cobbzilla-wizard</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. </parent>
  13. <artifactId>wizard-server-test</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.cobbzilla</groupId>
  18. <artifactId>wizard-server</artifactId>
  19. <version>1.0.0-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>${junit.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.cobbzilla</groupId>
  28. <artifactId>restex</artifactId>
  29. <version>1.0.1-SNAPSHOT</version>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>org.codehaus.jackson</groupId>
  33. <artifactId>jackson-mapper-asl</artifactId>
  34. </exclusion>
  35. <exclusion>
  36. <groupId>org.codehaus.jackson</groupId>
  37. <artifactId>jackson-core-asl</artifactId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. </dependencies>
  42. </project>