-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
59 lines (55 loc) · 2.32 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
50
51
52
53
54
55
56
57
58
59
<!--
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.xeventb</groupId>
<!-- Name of this artifact -->
<artifactId>root</artifactId>
<!-- REQUIRED: Name and description of this this root build -->
<name>CamilleX Root POM</name>
<description>Root artifact for CamilleX</description>
<!-- REQUIRED: Version number (using semantic versioning) -->
<version>3.1.0.release</version>
<packaging>pom</packaging>
<parent>
<!-- REQUIRED: Group ID is the feature ID -->
<groupId>ac.soton.xeventb</groupId>
<!-- Name of the release engineering artifact -->
<artifactId>releng</artifactId>
<!-- REQUIRED: Version number of the release engineering artifact -->
<version>3.1.0.release</version>
<!-- REQUIRED: Relative path to the release engineering artifact -->
<relativePath>./ac.soton.xeventb.releng</relativePath>
</parent>
<modules>
<!-- LATER: List of modules in this build -->
<module>ac.soton.xeventb.branding</module>
<module>ac.soton.xeventb.cheatsheet</module>
<module>ac.soton.xeventb.common</module>
<module>ac.soton.xeventb.doc</module>
<module>ac.soton.xeventb.ui</module>
<module>ac.soton.xeventb.tests.common</module>
<module>ac.soton.xeventb.xcontext</module>
<module>ac.soton.xeventb.xcontext.ide</module>
<module>ac.soton.xeventb.xcontext.tests</module>
<module>ac.soton.xeventb.xcontext.ui</module>
<!-- <module>ac.soton.xeventb.xcontext.ui.tests</module> -->
<module>ac.soton.xeventb.xmachine</module>
<module>ac.soton.xeventb.xmachine.ide</module>
<module>ac.soton.xeventb.xmachine.tests</module>
<module>ac.soton.xeventb.xmachine.ui</module>
<!-- <module>ac.soton.xeventb.xmachine.ui.tests</module> -->
<module>ac.soton.xeventb.feature</module>
<module>ac.soton.xeventb.tests.feature</module>
<module>ac.soton.xeventb.sdk</module>
</modules>
</project>