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.

83 lines
2.6 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2013-2014 Jonathan Cobb
  4. cobbzilla-wizard 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-parent</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. </parent>
  13. <artifactId>cobbzilla-wizard</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <packaging>pom</packaging>
  16. <modules>
  17. <module>wizard-common</module>
  18. <module>wizard-server</module>
  19. <module>wizard-client</module>
  20. <module>wizard-server-test</module>
  21. </modules>
  22. <licenses>
  23. <license>
  24. <name>The Apache Software License, Version 2.0</name>
  25. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  26. <distribution>repo</distribution>
  27. </license>
  28. </licenses>
  29. <dependencies>
  30. <!-- Hibernate, but only so the annotations don't make the compiler barf -->
  31. <dependency>
  32. <groupId>org.hibernate</groupId>
  33. <artifactId>hibernate-core</artifactId>
  34. <version>${hibernate.version}</version>
  35. </dependency>
  36. <!-- handy stuff -->
  37. <dependency>
  38. <groupId>org.cobbzilla</groupId>
  39. <artifactId>cobbzilla-utils</artifactId>
  40. <version>1.0.0-SNAPSHOT</version>
  41. </dependency>
  42. <!-- JSR 303 with Hibernate Validator -->
  43. <dependency>
  44. <groupId>org.javassist</groupId>
  45. <artifactId>javassist</artifactId>
  46. <version>${javassist.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>cglib</groupId>
  50. <artifactId>cglib</artifactId>
  51. <version>${cglib.version}</version>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <!-- use Java 11 -->
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>2.3.2</version>
  61. <configuration>
  62. <source>11</source>
  63. <target>11</target>
  64. <showWarnings>true</showWarnings>
  65. <encoding>UTF-8</encoding>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>