This repository has been archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpom.xml
96 lines (81 loc) · 2.83 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>int.esa.ccsds.mo</groupId>
<artifactId>POM</artifactId>
<version>7</version>
<relativePath/>
</parent>
<artifactId>MAL_IMPL</artifactId>
<packaging>jar</packaging>
<version>1.7</version>
<name>ESA MAL Java Implementation</name>
<description>The ESA implementation of the CCSDS MAL in Java</description>
<url>http://www.esa.int</url>
<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_MAL_IMPL/master/LICENCE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:esa/CCSDS_MAL_IMPL.git</connection>
<developerConnection>scm:git:[email protected]:esa/CCSDS_MAL_IMPL.git</developerConnection>
<url>https://github.com/esa/CCSDS_MAL_IMPL</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/esa/CCSDS_MAL_IMPL/issues</url>
</issueManagement>
<developers>
<developer>
<id>SamCooper</id>
<name>Sam Cooper</name>
<email>[email protected]</email>
<url>https://github.com/SamCooper</url>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>int.esa.ccsds.mo</groupId>
<artifactId>API_MAL</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}</directory>
<includes>
<include>LICENCE.md</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>