-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
109 lines (102 loc) · 3.26 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
<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>
<groupId>info.kuechler.bmf.taxapi</groupId>
<artifactId>taxapi</artifactId>
<packaging>jar</packaging>
<name>taxapi</name>
<parent>
<groupId>info.kuechler.bmf</groupId>
<artifactId>modules</artifactId>
<version>2023.1.0</version>
</parent>
<url>https://github.com/taxcalcs/taxapi</url>
<description>Generated API classes for direct server communication with https://www.bmf-steuerrechner.de/</description>
<inceptionYear>2016</inceptionYear>
<issueManagement>
<system>github</system>
<url>https://github.com/taxcalcs/taxapi/issues</url>
</issueManagement>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Ariel Küchler</name>
<url>https://github.com/admiralsmaster</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/taxcalcs/taxapi.git</connection>
<developerConnection>scm:git:ssh://github.com:taxcalcs/taxapi.git</developerConnection>
<url>http://github.com/taxcalcs/taxapi/tree/master</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<configuration>
<locale>en</locale>
<args>
<arg>-Xxew</arg>
<arg>-Xxew:instantiate lazy</arg>
<!--arg>- -illegal-access=permit</arg-->
</args>
<plugins>
<plugin>
<groupId>com.github.jaxb-xew-plugin</groupId>
<artifactId>jaxb-xew-plugin</artifactId>
<version>${com.github.jaxb-xew-plugin.version}</version>
</plugin>
</plugins>
</configuration>
<executions>
<execution>
<id>generate</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>info.kuechler.bmf.taxapi</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>