-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
161 lines (146 loc) · 4.84 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<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>
<groupId>org.jadice.util</groupId>
<artifactId>jadice-dss-utils</artifactId>
<packaging>jar</packaging>
<name>jadice dss signature utils</name>
<version>2.0.0-SNAPSHOT</version>
<prerequisites>
<maven>3.3.9</maven>
</prerequisites>
<scm>
<connection>
scm:git:ssh://[email protected]:levigo/jadice-dss-utils.git
</connection>
<developerConnection>
scm:git:ssh://[email protected]:levigo/jadice-dss-utils.git
</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/levigo/jadice-dss-utils</url>
</scm>
<distributionManagement>
<repository>
<id>maven2.releases.levigo.de</id>
<url>https://levigo.de/maven2/content/repositories/levigo-releases/</url>
</repository>
<snapshotRepository>
<id>maven2.snapshots.levigo.de</id>
<url>https://levigo.de/maven2/content/repositories/levigo-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<jadice.utils.version>6.5.23</jadice.utils.version>
<jadice.utils.groupId>org.jadice.util</jadice.utils.groupId>
<!-- If this version is updated also update it in the core module signature-dss-->
<dss.version>6.1</dss.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>${jadice.utils.groupId}</groupId>
<artifactId>logging</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<!-- base library -->
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-validation</artifactId>
</dependency>
<!-- used for validation -->
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-tsl-validation</artifactId>
</dependency>
<!-- This or dss-utils-google-guave has to be included-->
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-utils-google-guava</artifactId>
</dependency>
<!-- This or dss-pades-openpdf is needed to read pdf documents-->
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-pades-pdfbox</artifactId>
</dependency>
<!-- Implementation for ICRUtils is needed. This or dss-crl-parser-x509crl -->
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-crl-parser-stream</artifactId>
</dependency>
<!-- Services to access file loader in viewer swing-->
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-service</artifactId>
</dependency>
<!-- Needed since 6.1 -->
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-xades</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>eu.europa.ec.joinup.sd-dss</groupId>
<artifactId>dss-bom</artifactId>
<version>${dss.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>${jadice.utils.groupId}</groupId>
<artifactId>jadice-utils-bom</artifactId>
<version>${jadice.utils.version}</version>
<type>pom</type>
<scope>import</scope>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>