-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
35 lines (34 loc) · 1.48 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<project>
<modelVersion>4.0.0</modelVersion>
<!-- REQUIRED: Group ID is the feature ID -->
<groupId>ac.soton.eventb.emf.diagrams</groupId>
<!-- Name of this artifact -->
<artifactId>root</artifactId>
<!-- REQUIRED: Name and description of this this root build -->
<name>UML-B Diagrams Root POM</name>
<description>Root artifact for UML-B Diagrams</description>
<!-- REQUIRED: Version number (using semantic versioning) -->
<version>9.0.0.release</version>
<packaging>pom</packaging>
<parent>
<!-- REQUIRED: Group ID is the feature ID -->
<groupId>ac.soton.eventb.emf.diagrams</groupId>
<!-- Name of the release engineering artifact -->
<artifactId>releng</artifactId>
<!-- REQUIRED: Version number of the release engineering artifact -->
<version>9.0.0.release</version>
<!-- REQUIRED: Relative path to the release engineering artifact -->
<relativePath>./ac.soton.eventb.emf.diagrams.releng</relativePath>
</parent>
<modules>
<!-- LATER: List of modules in this build -->
<module>ac.soton.eventb.emf.diagrams</module>
<module>ac.soton.eventb.emf.diagrams.branding</module>
<module>ac.soton.eventb.emf.diagrams.edit</module>
<module>ac.soton.eventb.emf.diagrams.generator</module>
<module>ac.soton.eventb.emf.diagrams.navigator</module>
<module>ac.soton.eventb.emf.diagrams.refactor</module>
<module>ac.soton.eventb.emf.diagrams.feature</module>
<module>ac.soton.eventb.emf.diagrams.sdk</module>
</modules>
</project>