-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
51 lines (41 loc) · 1.71 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
<?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.vogella.e4.rcp.main</artifactId>
<packaging>pom</packaging>
<modules>
<!-- target -->
<module>target-platform</module>
<!-- bundles -->
<module>com.example.e4.bundleresourceloader</module>
<module>com.example.e4.rcp.todo</module>
<module>com.example.e4.rcp.todo.addons</module>
<module>com.example.e4.rcp.todo.contribute</module>
<module>com.example.e4.rcp.todo.contribute.processor</module>
<module>com.example.e4.rcp.todo.events</module>
<module>com.example.e4.rcp.todo.i18n</module>
<module>com.example.e4.rcp.todo.model</module>
<module>com.example.e4.rcp.todo.ownannotation</module>
<module>com.example.e4.rcp.todo.rest.services</module>
<module>com.example.e4.rcp.todo.services</module>
<module>com.example.e4.renderer.swt</module>
<!-- Junit tests -->
<module>com.example.e4.rcp.todo.model.test</module>
<!-- features -->
<module>com.example.e4.rcp.todo.feature</module>
<!-- p2 repository for updates -->
<module>com.example.e4.rcp.todo.updatesite</module>
<!-- product related -->
<module>com.example.e4.rcp.todo.product</module>
<module>com.vogella.extensionpoint.contribution</module>
<module>com.vogella.extensionpoint.definition</module>
</modules>
</project>