-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
49 lines (45 loc) · 1.94 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!--
Copyright (c) 2020 University of Southampton.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
University of Southampton - initial API and implementation
-->
<project>
<modelVersion>4.0.0</modelVersion>
<!-- REQUIRED: Group ID is the feature ID -->
<groupId>ac.soton.eventb.emf.record</groupId>
<!-- ID of this artifact -->
<artifactId>root</artifactId>
<!-- REQUIRED: Name and description of this this root build -->
<name>Event-B EMF Record Root Module</name>
<description>Event-B EMF Record Root Build</description>
<!-- REQUIRED: Version number (using semantic versioning) -->
<version>0.1.1.release</version>
<packaging>pom</packaging>
<parent>
<!-- REQUIRED: Group ID is the feature ID -->
<groupId>ac.soton.eventb.emf.record</groupId>
<!-- Name of the release engineering artifact -->
<artifactId>releng</artifactId>
<!-- REQUIRED: Version number of the release engineering artifact -->
<version>0.1.1.release</version>
<!-- REQUIRED: Relative path to the release engineering artifact -->
<relativePath>./ac.soton.eventb.emf.record.releng</relativePath>
</parent>
<modules>
<!-- LATER: List of modules in this build -->
<module>ac.soton.eventb.emf.record</module>
<module>ac.soton.eventb.emf.record.edit</module>
<module>ac.soton.eventb.emf.record.generator</module>
<module>ac.soton.eventb.emf.record.ui</module>
<!-- <module>ac.soton.eventb.emf.record.tests</module> -->
<module>ac.soton.eventb.emf.record.generator.tests</module>
<module>ac.soton.eventb.emf.record.feature</module>
<module>ac.soton.eventb.emf.record.tests.feature</module>
<module>ac.soton.eventb.emf.record.sdk</module>
</modules>
</project>