forked from OxalisCommunity/vefa-peppol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
146 lines (130 loc) · 4.81 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?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.7.1-SNAPSHOT</version>
</parent>
<artifactId>peppol-publisher</artifactId>
<name>VEFA PEPPOL :: Publisher</name>
<description>Tools for metadata publishers.</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>
<dependency>
<groupId>network.oxalis.vefa</groupId>
<artifactId>peppol-lookup</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>network.oxalis.vefa</groupId>
<artifactId>peppol-security</artifactId>
<exclusions>
<exclusion>
<groupId>network.oxalis.vefa</groupId>
<artifactId>peppol-mode</artifactId>
</exclusion>
<exclusion>
<groupId>network.oxalis.commons</groupId>
<artifactId>commons-certvalidator</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Peppol Specifications -->
<dependency>
<groupId>network.oxalis.peppol</groupId>
<artifactId>peppol-busdox</artifactId>
</dependency>
<dependency>
<groupId>network.oxalis.peppol</groupId>
<artifactId>peppol-bdx</artifactId>
</dependency>
<!-- SLF4J -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Java -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Google Guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>