pom.xml 799B

12345678910111213141516171819202122
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>se.citerus.dddsample.external</groupId>
  5. <artifactId>reporting-api</artifactId>
  6. <parent>
  7. <groupId>se.citerus.dddsample</groupId>
  8. <artifactId>external</artifactId>
  9. <version>1.2-SNAPSHOT</version>
  10. </parent>
  11. <packaging>jar</packaging>
  12. <name>External: Reporting API</name>
  13. <version>${project.parent.version}</version>
  14. <description>Reporting API</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>javax.ws.rs</groupId>
  18. <artifactId>jsr311-api</artifactId>
  19. </dependency>
  20. </dependencies>
  21. </project>