-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot.xml
39 lines (39 loc) · 1.49 KB
/
root.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
<?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/maven-v4_0_0.xsd">
<description>
An ancestor of any other Maven project with groupId 'stincmale.sandbox'.
</description>
<modelVersion>4.0.0</modelVersion>
<groupId>stincmale.sandbox</groupId>
<artifactId>sandbox-root</artifactId>
<version>0.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>sandbox-root</name>
<url>${custom.project.uri}</url>
<licenses>
<license>
<name>${custom.project.licenseName}</name>
<url>${custom.project.licenseUri}</url>
</license>
</licenses>
<inceptionYear>2015</inceptionYear>
<developers>
<developer>
<id>stIncMale</id>
<name>Valiantsin Kavalenka</name>
<email>public.vkovalenko@gmail.com</email>
<url>https://www.kovalenko.link</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
<custom.project.name>Sandbox</custom.project.name>
<custom.project.uri>https://github.com/stIncMale/sandbox-java</custom.project.uri>
<custom.project.licenseName>WTFPL</custom.project.licenseName>
<custom.project.licenseUri>http://www.wtfpl.net/</custom.project.licenseUri>
</properties>
</project>