1234567891011121314151617181920212223242526
  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>pathfinder</module>
  15. <module>pathfinder-api</module>
  16. <module>aggregator</module>
  17. </modules>
  18. <packaging>pom</packaging>
  19. <name>External</name>
  20. <version>1.2-SNAPSHOT</version>
  21. <description>External components</description>
  22. <build>
  23. <defaultGoal>package</defaultGoal>
  24. </build>
  25. </project>