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.

82 lines
2.5 KiB

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