This repository was archived by the owner on Dec 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpom.xml
More file actions
47 lines (39 loc) · 1.43 KB
/
pom.xml
File metadata and controls
47 lines (39 loc) · 1.43 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cloud.timo.TimoCloud</groupId>
<artifactId>TimoCloud</artifactId>
<packaging>pom</packaging>
<version>5.5.1</version>
<modules>
<module>TimoCloud-Universal</module>
<module>TimoCloud-API</module>
</modules>
<pluginRepositories>
<pluginRepository>
<id>TimoCloud-API</id>
<name>TimoCloud-API</name>
<url>http://maven.timo.cloud/repository/TimoCloud-API/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>TimoCloud-API</id>
<name>TimoCloud-API</name>
<url>https://maven.timo.cloud/repository/TimoCloud-API/</url>
</repository>
<snapshotRepository>
<id>TimoCloud-API</id>
<name>TimoCloud-API</name>
<url>https://maven.timo.cloud/repository/TimoCloud-API/</url>
</snapshotRepository>
</distributionManagement>
</project>