forked from esa/CCSDS_MO_TRANS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
98 lines (85 loc) · 3.15 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed under the European Space Agency Public License, Version 2.0
You may not use this file except in compliance with the License.
Except as expressly set forth in this License, the Software is provided to
You on an "as is" basis and without warranties of any kind, including without
limitation merchantability, fitness for a particular purpose, absence of
defects or errors, accuracy or non-infringement of intellectual property rights.
See the License for the specific language governing permissions and limitations under the License.
-->
<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>
<parent>
<groupId>int.esa.ccsds.mo</groupId>
<artifactId>POM</artifactId>
<version>5</version>
<relativePath/>
</parent>
<artifactId>REACTOR_TRANSPORTS</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ESA CCSDS Java Transport reactor build</name>
<organization>
<name>ESA</name>
<url>http://www.esa.int</url>
</organization>
<licenses>
<license>
<name>The European Space Agency Public License, Version 2.0</name>
<url>https://raw.github.com/esa/CCSDS_MO_TRANS/master/LICENCE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:esa/CCSDS_MO_TRANS.git</connection>
<developerConnection>scm:git:[email protected]:esa/CCSDS_MO_TRANS.git</developerConnection>
<url>https://github.com/esa/CCSDS_MO_TRANS</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/esa/CCSDS_MO_TRANS/issues</url>
</issueManagement>
<developers>
<developer>
<id>SamCooper</id>
<name>Sam Cooper</name>
<email>[email protected]</email>
<url>https://github.com/SamCooper</url>
</developer>
</developers>
<modules>
<module>CCSDS_MAL_ENCODING_GEN</module>
<module>CCSDS_MAL_ENCODING_STRING</module>
<module>CCSDS_MAL_ENCODING_BINARY</module>
<module>CCSDS_MAL_ENCODING_BINARY_SPLIT</module>
<module>CCSDS_MAL_ENCODING_BINARY_FIXED</module>
<module>CCSDS_MAL_TRANSPORT_GEN</module>
<module>CCSDS_MAL_TRANSPORT_RMI</module>
<module>CCSDS_MAL_TRANSPORT_TCPIP</module>
<module>CCSDS_MAL_TRANSPORT_JMS</module>
<module>CCSDS_MAL_TRANSPORT_ACTIVEMQ</module>
<module>CCSDS_MAL_TRANSPORT_SPP</module>
</modules>
<profiles>
<profile>
<id>ESA</id>
<dependencies>
<dependency>
<groupId>int.esa.ccsds.mo</groupId>
<artifactId>API_MAL</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>One-Oh-Seven-Needed</id>
<activation>
<jdk>[1.7,]</jdk>
</activation>
<modules>
<module>CCSDS_MAL_TRANSPORT_FILE</module>
</modules>
</profile>
</profiles>
</project>