-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
76 lines (75 loc) · 2.92 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
<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>
<groupId>de.elnarion.maven</groupId>
<artifactId>elnarion-parent-pom</artifactId>
<version>2.0.11</version>
</parent>
<groupId>de.elnarion.util</groupId>
<artifactId>docconverter</artifactId>
<packaging>pom</packaging>
<version>1.0.11-SNAPSHOT</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>library and maven plugin project for document conversion</description>
<url>https://github.com/devlauer/docconverter</url>
<properties>
<java.version>11</java.version>
<junit.version>5.11.1</junit.version>
<sonar.organization>devlauer</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<issueManagement>
<system>jira</system>
<url>https://github.com/devlauer/docconverter/issues</url>
</issueManagement>
<modules>
<module>api</module>
<module>common</module>
<module>testsupport</module>
<module>html2pdf</module>
<module>html2docx</module>
<module>pdf2jpg</module>
<module>adoc2adoc</module>
<module>all</module>
<module>docconverter-maven-plugin</module>
</modules>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<toolchains>
<!-- this project needs a JDK toolchain, version 15 -->
<jdk>
<version>17</version>
</jdk>
</toolchains>
</configuration>
<executions>
<execution>
<goals>
<goal>toolchain</goal>
</goals>
<!-- the toolchain goal binds to the validate phase automatically -->
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:ssh://[email protected]/devlauer/docconverter.git</connection>
<developerConnection>scm:git:ssh://[email protected]/devlauer/docconverter.git</developerConnection>
<url>https://github.com/devlauer/docconverter/tree/master</url>
<tag>HEAD</tag>
</scm>
</project>