-
Notifications
You must be signed in to change notification settings - Fork 18
/
pom.xml
111 lines (97 loc) · 3.6 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
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2015-2017 Direktoratet for forvaltning og IKT
~
~ This source code is subject to dual licensing:
~
~
~ Licensed under the EUPL, Version 1.1 or – as soon they
~ will be approved by the European Commission - subsequent
~ versions of the EUPL (the "Licence");
~
~ This Source Code Form is subject to the terms of the Mozilla Public
~ License, v. 2.0. If a copy of the MPL was not distributed with this
~ file, You can obtain one at http://mozilla.org/MPL/2.0/.
~
~
~ See the Licence for the specific language governing
~ permissions and limitations under the Licence.
-->
<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>
<artifactId>vefa-peppol</artifactId>
<groupId>network.oxalis.vefa</groupId>
<version>3.8.1-SNAPSHOT</version>
</parent>
<artifactId>peppol-sbdh</artifactId>
<name>VEFA PEPPOL :: SBDH</name>
<description>SBDH utilities for PEPPOL.</description>
<url>https://github.com/OxalisCommunity/vefa-peppol</url>
<scm>
<tag>HEAD</tag>
<url>https://github.com/OxalisCommunity/vefa-peppol</url>
<connection>scm:git:[email protected]:OxalisCommunity/vefa-peppol.git</connection>
<developerConnection>scm:git:[email protected]:OxalisCommunity/vefa-peppol.git</developerConnection>
</scm>
<issueManagement>
<url>https://github.com/OxalisCommunity/vefa-peppol/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<organization>
<name>NorStella</name>
<url>https://en.norstella.no/</url>
</organization>
<developers>
<developer>
<name>Erlend Klakegg Bergheim</name>
<email>[email protected]</email>
<organization>Difi</organization>
<roles>
<role>Principal author</role>
</roles>
</developer>
<developer>
<name>Arun Kumar</name>
<email>[email protected]</email>
<organization>Norstella</organization>
<roles>
<role>Oxalis Technical Expert</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>European Union Public Licence (EUPL v.1.1)</name>
<url>https://joinup.ec.europa.eu/community/eupl/og_page/european-union-public-licence-eupl-v11</url>
<distribution>repo</distribution>
</license>
<license>
<name>Mozilla Public License Version 2.0</name>
<url>https://www.mozilla.org/en-US/MPL/2.0/</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<!-- VEFA PEPPOL -->
<dependency>
<groupId>network.oxalis.vefa</groupId>
<artifactId>peppol-common</artifactId>
</dependency>
<!-- Peppol Specifications -->
<dependency>
<groupId>network.oxalis.peppol</groupId>
<artifactId>peppol-sbdh</artifactId>
</dependency>
<!-- Google Guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- Apache Commons -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
</dependencies>
</project>