forked from exo-addons/trash-cleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
37 lines (37 loc) · 1.39 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
<?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>
<parent>
<artifactId>addons-parent-pom</artifactId>
<groupId>org.exoplatform.addons</groupId>
<version>5</version>
</parent>
<groupId>org.exoplatform.addons.trash-cleaner</groupId>
<artifactId>trash-cleaner-extension</artifactId>
<version>1.0.x-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Trash cleaner Extension</name>
<description>Trash cleaner Extension</description>
<modules>
<module>service</module>
<module>packaging</module>
</modules>
<scm>
<connection>scm:git:git://github.com/exo-addons/trash-cleaner.git</connection>
<developerConnection>scm:git:[email protected]:exo-addons/trash-cleaner.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/exo-addons/trash-cleaner</url>
</scm>
<dependencyManagement>
<dependencies>
<!-- Import versions from platform project -->
<dependency>
<groupId>org.exoplatform.platform</groupId>
<artifactId>platform</artifactId>
<version>4.3.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>