-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
65 lines (55 loc) · 2.04 KB
/
pom.xml
File metadata and controls
65 lines (55 loc) · 2.04 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of VERA PDF Tests, a module of the veraPDF project.
Copyright (c) 2015-2025, veraPDF Consortium <info@verapdf.org>
All rights reserved.
VERA PDF Tests is free software: you can redistribute it and/or modify
it under the terms of either:
The GNU General public license GPLv3+.
You should have received a copy of the GNU General Public License
along with VERA PDF Tests as the LICENSE.GPL file in the root of the source
tree. If not, see http://www.gnu.org/licenses/ or
https://www.gnu.org/licenses/gpl-3.0.en.html.
The Mozilla Public License MPLv2+.
You should have received a copy of the Mozilla Public License along with
VERA PDF Tests as the LICENSE.MPL file in the root of the source tree.
If a copy of the MPL was not distributed with this file, you can obtain one at
http://mozilla.org/MPL/2.0/.
-->
<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>
<relativePath>../org.verapdf.releng/pom.xml</relativePath>
<groupId>org.verapdf</groupId>
<artifactId>parent</artifactId>
<version>1.28.0</version>
</parent>
<artifactId>org.verapdf.tests</artifactId>
<packaging>eclipse-test-plugin</packaging>
<name>VERA PDF Tests</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>gen-clean</id>
<phase>clean</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<failIfNoTests>false</failIfNoTests>
<useUIHarness>false</useUIHarness>
<useUIThread>false</useUIThread>
</configuration>
</plugin>
</plugins>
</build>
</project>