-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
61 lines (53 loc) · 2.11 KB
/
pom.xml
File metadata and controls
61 lines (53 loc) · 2.11 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.lars-sh</groupId>
<artifactId>parent</artifactId>
<version>0.9.18</version>
<relativePath />
</parent>
<groupId>de.lars-sh.election-results</groupId>
<artifactId>election-results-parent</artifactId>
<version>0.9.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Election Results</name>
<url>https://${parent-pom.github.organization}.github.io/${parent-pom.github.project}/</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Lars Knickrehm</name>
<email>mail@lars-sh.de</email>
<url>https://lars-sh.de/</url>
</developer>
</developers>
<modules>
<module>core</module>
<module>cli</module>
</modules>
<scm>
<connection>scm:git:git@github.com:${parent-pom.github.organization}/${parent-pom.github.project}.git</connection>
<developerConnection>scm:git:git@github.com:${parent-pom.github.organization}/${parent-pom.github.project}.git</developerConnection>
<url>https://github.com/${parent-pom.github.organization}/${parent-pom.github.project}</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/${parent-pom.github.organization}/${parent-pom.github.project}/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/${parent-pom.github.organization}/${parent-pom.github.project}/actions</url>
</ciManagement>
<properties>
<parent-pom.create-changelog-md>false</parent-pom.create-changelog-md>
<parent-pom.create-gitignore>false</parent-pom.create-gitignore>
<parent-pom.github.project>election-results</parent-pom.github.project>
<eclipse.compiler.javadoc>disabled</eclipse.compiler.javadoc>
<maven.javadoc.failOnWarnings>false</maven.javadoc.failOnWarnings>
</properties>
</project>