forked from rexlManu/Open-Cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
55 lines (43 loc) · 1.66 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2018, Open-Cloud-Services and contributors
~
~ The code is licensed under the MIT License, which can be found in the root directory of the repository.
-->
<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>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.targetEncoding>UTF-8</project.build.targetEncoding>
<project.version>1.0</project.version>
<!-- Dependency Versions -->
<version.lombok>1.16.20</version.lombok>
<version.jopt>5.0.4</version.jopt>
<version.gson>2.8.4</version.gson>
<version.guava>25.0-jre</version.guava>
<version.netty>4.1.25.Final</version.netty>
<version.jline>2.14.6</version.jline>
</properties>
<groupId>de.tammo.cloud</groupId>
<artifactId>Open-Cloud</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<name>Open-Cloud</name>
<developers>
<developer>
<name>Tammo</name>
</developer>
</developers>
<modules>
<module>Open-Core</module>
<module>Open-Master</module>
<module>Open-Wrapper</module>
<module>Open-Network</module>
<module>Open-Modules</module>
<module>Open-API</module>
</modules>
</project>