-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpom.xml
49 lines (45 loc) · 1.85 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed under European Space Agency Public License (ESA-PL) Weak Copyleft – v2.4
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.nmf</groupId>
<artifactId>parent</artifactId>
<version>2.1.0-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
<groupId>int.esa.nmf</groupId>
<artifactId>reactor</artifactId>
<name>ESA NMF Reactor</name>
<packaging>pom</packaging>
<description>Maven Reactor for ESA Nanosat MO Framework</description>
<organization>
<name>ESA</name>
<url>http://www.esa.int</url>
</organization>
<licenses>
<license>
<name>European Space Agency Public License (ESA-PL) Weak Copyleft – v2.4</name>
<url>https://raw.github.com/esa/nanosat-mo-framework/master/LICENCE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</properties>
<modules>
<module>parent</module>
<module>core</module>
<module>mission/simulator</module>
<module>sdk</module>
</modules>
</project>