forked from exo-addons/staging-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
121 lines (121 loc) · 3.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>addons-parent-pom</artifactId>
<groupId>org.exoplatform.addons</groupId>
<version>2</version>
</parent>
<groupId>org.exoplatform.addons.staging</groupId>
<artifactId>staging-extension-parent</artifactId>
<version>2.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Staging Extension</name>
<description>Staging Extension for eXo Platform 4</description>
<scm>
<connection>scm:git:git://github.com/exo-addons/staging-extension.git</connection>
<developerConnection>scm:git:[email protected]:exo-addons/staging-extension.git</developerConnection>
<url>https://github.com/exo-addons/staging-extension</url>
</scm>
<properties>
<maven.plugin.jasmine.version>1.3.1.3</maven.plugin.jasmine.version>
<junit.version>4.8.2</junit.version>
<xmlunit.version>1.3</xmlunit.version>
<gatein.management.version>1.1.0.Final</gatein.management.version>
<org.exoplatform.platform.version>4.0.4</org.exoplatform.platform.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- Import versions from platform project -->
<dependency>
<groupId>org.exoplatform.platform</groupId>
<artifactId>platform</artifactId>
<version>${org.exoplatform.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.gatein.management</groupId>
<artifactId>gatein-management-api</artifactId>
<version>${gatein.management.version}</version>
</dependency>
<dependency>
<groupId>org.gatein.management</groupId>
<artifactId>gatein-management-spi</artifactId>
<version>${gatein.management.version}</version>
</dependency>
<dependency>
<groupId>org.gatein.management</groupId>
<artifactId>gatein-management-core</artifactId>
<version>${gatein.management.version}</version>
</dependency>
<dependency>
<groupId>org.gatein.management</groupId>
<artifactId>gatein-management-rest</artifactId>
<version>${gatein.management.version}</version>
</dependency>
<dependency>
<groupId>org.gatein.management</groupId>
<artifactId>gatein-management-cli</artifactId>
<version>${gatein.management.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>${xmlunit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
<version>${maven.plugin.jasmine.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>component</module>
<module>config</module>
<module>cli</module>
<module>portlet</module>
<module>packaging</module>
</modules>
<profiles>
<profile>
<id>project-repositories</id>
<activation>
<property>
<name>!skip-project-repositories</name>
</property>
</activation>
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>repository.exoplatform.org</id>
<url>https://repository.exoplatform.org/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>repository.exoplatform.org</id>
<url>https://repository.exoplatform.org/public</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</project>