This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
52 lines (52 loc) · 1.9 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
<?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>17-exo-M01</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:git@github.com: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.social</groupId>
<artifactId>social</artifactId>
<version>6.5.x-exo-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Import versions from jcr project -->
<dependency>
<groupId>org.exoplatform.jcr</groupId>
<artifactId>jcr-parent</artifactId>
<version>6.5.x-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.ecms</groupId>
<artifactId>ecms</artifactId>
<version>6.5.x-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>