-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
30 lines (29 loc) · 1.23 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
<project>
<modelVersion>4.0.0</modelVersion>
<!-- REQUIRED: Group ID is the feature ID -->
<groupId>ac.soton.emf.translator.eventb</groupId>
<!-- Name of this artifact -->
<artifactId>root</artifactId>
<!-- REQUIRED: Name and description of this this root build -->
<name>Event-B Translator Support Root POM</name>
<description>Root artifact for Event-B Translator Support</description>
<!-- REQUIRED: Version number (using semantic versioning) -->
<version>0.1.0.release</version>
<packaging>pom</packaging>
<parent>
<!-- REQUIRED: Group ID is the feature ID -->
<groupId>ac.soton.emf.translator.eventb</groupId>
<!-- Name of the release engineering artifact -->
<artifactId>releng</artifactId>
<!-- REQUIRED: Version number of the release engineering artifact -->
<version>0.0.2.release</version>
<!-- REQUIRED: Relative path to the release engineering artifact -->
<relativePath>./ac.soton.emf.translator.eventb.releng</relativePath>
</parent>
<modules>
<!-- LATER: List of modules in this build -->
<module>ac.soton.emf.translator.eventb</module>
<module>ac.soton.emf.translator.eventb.feature</module>
<module>ac.soton.emf.translator.eventb.sdk</module>
</modules>
</project>