-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
39 lines (33 loc) · 1.26 KB
/
pom.xml
File metadata and controls
39 lines (33 loc) · 1.26 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>dev.cerus.blockbind</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<name>Block Bind</name>
<description>Synchronizing distributed Minecraft servers</description>
<modules>
<module>api</module>
<module>bukkit</module>
<module>platform-bukkit-16R3</module>
<module>platform-bukkit-18R1</module>
</modules>
<properties>
<blockbind.filename>blockbind</blockbind.filename>
<blockbind.name.spaceless>BlockBind</blockbind.name.spaceless>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
</properties>
<developers>
<developer>
<id>cerus</id>
<name>Maximilian Dorn</name>
<email>m.dorn.2003@web.de</email>
<url>https://cerus.dev</url>
<timezone>CET</timezone>
</developer>
</developers>
</project>