-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
71 lines (65 loc) · 2.66 KB
/
pom.xml
File metadata and controls
71 lines (65 loc) · 2.66 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2008-2019 German Aerospace Center (DLR), Simulation and
Software Technology, Germany. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0 which
is available at http://www.eclipse.org/legal/epl-2.0. SPDX-License-Identifier:
EPL-2.0 -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.dlr.sc.virsat.fdir</groupId>
<artifactId>de.dlr.sc.virsat.fdir.parent</artifactId>
<version>4.15.0-SNAPSHOT</version>
<packaging>pom</packaging>
<profiles>
<profile>
<!-- Build profile for updating the target platform -->
<id>target</id>
<properties>
<build.src>tmodel-src</build.src>
</properties>
<modules>
<module>de.dlr.sc.virsat.fdir.target</module>
</modules>
</profile>
<profile>
<!-- Build profile for building the main product -->
<id>product</id>
<properties>
<build.src>src</build.src>
</properties>
<modules>
<module>de.dlr.sc.virsat.fdir.target</module>
<!-- The Extension for the FDIR Data Model -->
<module>de.dlr.sc.virsat.fdir.core</module>
<module>de.dlr.sc.virsat.fdir.core.test</module>
<module>de.dlr.sc.virsat.fdir.storm</module>
<module>de.dlr.sc.virsat.fdir.storm.test</module>
<module>de.dlr.sc.virsat.model.extension.fdir</module>
<module>de.dlr.sc.virsat.model.extension.fdir.ui</module>
<module>de.dlr.sc.virsat.model.extension.fdir.test</module>
<!-- The Galileo DFT Model -->
<module>de.dlr.sc.virsat.fdir.galileo</module>
<module>de.dlr.sc.virsat.fdir.galileo.ui</module>
<module>de.dlr.sc.virsat.fdir.galileo.ide</module>
<module>de.dlr.sc.virsat.fdir.galileo.tests</module>
<module>de.dlr.sc.virsat.fdir.branding.ui</module>
<module>de.dlr.sc.virsat.fdir.swtbot.test</module>
</modules>
</profile>
<profile>
<id>deploy</id>
<modules>
<module>de.dlr.sc.virsat.fdir.branding.feature</module>
<module>de.dlr.sc.virsat.fdir.license.feature</module>
<module>de.dlr.sc.virsat.fdir.docs.feature</module>
<module>de.dlr.sc.virsat.fdir.galileo.feature</module>
<module>de.dlr.sc.virsat.fdir.storm.feature</module>
<module>de.dlr.sc.virsat.model.extension.fdir.feature</module>
<module>de.dlr.sc.virsat.fdir.product</module>
<module>de.dlr.sc.virsat.fdir.p2updatesite</module>
</modules>
</profile>
</profiles>
</project>