-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
69 lines (61 loc) · 2.06 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
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>eu.xtrf</groupId>
<artifactId>xtrf-parent</artifactId>
<version>10.3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<modules>
<module>xtrf-html2pdf-mock</module>
<module>xtrf-html2pdf-server</module>
</modules>
<artifactId>html2pdf-server</artifactId>
<version>10.3.0-SNAPSHOT</version>
<name>html2pdf-server</name>
<packaging>pom</packaging>
<properties>
<maven.site.skip>true</maven.site.skip>
<maven.site.deploy.skip>true</maven.site.deploy.skip>
<xtrf.test.utils.version>10.3.0-SNAPSHOT</xtrf.test.utils.version>
<flying.saucer.pdf.openpdf.version>9.1.22</flying.saucer.pdf.openpdf.version>
<junit.jupiter.api.version>5.6.2</junit.jupiter.api.version>
<spring.boot.starter.version>2.6.3</spring.boot.starter.version>
</properties>
<repositories>
<repository>
<id>euteCert-repo</id>
<name>euteCert release repository</name>
<url>https://nexus.dev.xtrf.eu/nexus/content/groups/public</url>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<scm>
<connection>scm:git:ssh://[email protected]/xtrf/html2pdf-server.git</connection>
<developerConnection>scm:git:ssh://[email protected]/xtrf/html2pdf-server.git</developerConnection>
<tag>master</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration><skip>true</skip></configuration>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>2.2.0</version>
<configuration>
<version>1</version>
<projectId>GCLOUD_CONFIG</projectId>
</configuration>
</plugin>
</plugins>
</build>
</project>