pom.xml 881B

123456789101112131415161718192021222324252627
  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</groupId>
  5. <artifactId>external</artifactId>
  6. <parent>
  7. <groupId>se.citerus</groupId>
  8. <artifactId>dddsample</artifactId>
  9. <version>1.2-SNAPSHOT</version>
  10. </parent>
  11. <modules>
  12. <module>ila</module>
  13. <module>reporting</module>
  14. <module>reporting-api</module>
  15. <module>pathfinder</module>
  16. <module>pathfinder-api</module>
  17. <module>aggregator</module>
  18. </modules>
  19. <packaging>pom</packaging>
  20. <name>External</name>
  21. <version>1.2-SNAPSHOT</version>
  22. <description>External components</description>
  23. <build>
  24. <defaultGoal>package</defaultGoal>
  25. </build>
  26. </project>