-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
91 lines (81 loc) · 3.41 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
<!--
~ This file is part of TI. It is subject to the license terms in the LICENSE file found in the top-level
~ directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of TI,
~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained
~ in the LICENSE file.
-->
<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>
<!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PARENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Inheritance -->
<parent>
<groupId>wtf.metio.maven.parents</groupId>
<artifactId>maven-parents-java-prototype</artifactId>
<version>2020.7.17-11732</version>
</parent>
<groupId>wtf.metio.ti</groupId>
<artifactId>thats-interesting.java</artifactId>
<version>9999.99.99-SNAPSHOT</version>
<packaging>pom</packaging>
<name>That's Interesting</name>
<description>Strongly-typed logging framework</description>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PROPERTIES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Properties -->
<properties>
<version.jdk>14</version.jdk>
<project.build.outputTimestamp>2020</project.build.outputTimestamp>
</properties>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DISTRIBUTION MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Distribution_Management -->
<distributionManagement>
<site>
<id>metio</id>
<name>official website</name>
<url>https://ti.projects.metio.wtf</url>
</site>
<repository>
<id>github</id>
<name>GitHub TI Apache Maven Packages</name>
<url>https://maven.pkg.github.com/metio/thats-interesting.java</url>
</repository>
</distributionManagement>
<modules>
<module>thats-interesting-core</module>
<module>thats-interesting-converters</module>
<module>thats-interesting-sinks</module>
</modules>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>