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.

36 lines
1.1 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-client</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.cobbzilla</groupId>
  18. <artifactId>wizard-common</artifactId>
  19. <version>1.0.0-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.cobbzilla</groupId>
  23. <artifactId>cobbzilla-utils</artifactId>
  24. <version>1.0.0-SNAPSHOT</version>
  25. </dependency>
  26. </dependencies>
  27. </project>