Skip to content

Instantly share code, notes, and snippets.

@SimonScholz
Last active August 29, 2015 14:14
Show Gist options
  • Save SimonScholz/134fed0f346c4491a82d to your computer and use it in GitHub Desktop.
Save SimonScholz/134fed0f346c4491a82d to your computer and use it in GitHub Desktop.
Aggregator pom
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.example.e4.rcp</groupId>
<artifactId>com.example.todo.build.parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../com.example.todo.build.parent</relativePath>
</parent>
<artifactId>com.example.build.aggregator</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>../com.example.e4.rcp.todo</module>
<module>../com.example.e4.rcp.todo.events</module>
<module>../com.example.e4.rcp.todo.feature</module>
<module>../com.example.e4.rcp.todo.model</module>
<module>../com.example.e4.rcp.todo.product</module>
<module>../com.example.e4.rcp.todo.services</module>
<module>../com.example.e4.rcp.todo.contribute</module>
</modules>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment