-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpom.xml
224 lines (215 loc) · 8.22 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.alfresco.support</groupId>
<artifactId>support-tools</artifactId>
<version>1.12-SNAPSHOT</version>
<name>Support Tools</name>
<packaging>amp</packaging>
<description>Repo AMP that adds extra features to the Support Tools section of 4.2.x and 5.x Alfresco Repo Admin Console</description>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>GNU Lesser General Public License v3.0 or later</name>
<url>http://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
</license>
</licenses>
<developers>
<developer>
<id>antonio.soler</id>
<name>Antonio Soler Asenci</name>
<email>[email protected]</email>
<organization>Alfresco Software</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Jamie Allison</name>
<email>[email protected]</email>
<organization>Alfresco Software</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
<timezone>0</timezone>
</contributor>
<contributor>
<name>Marco Mancuso</name>
<email>[email protected]</email>
<organization>Alfresco Software</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
<timezone>0</timezone>
</contributor>
<contributor>
<name>Mike Farman</name>
<email>[email protected]</email>
<organization>Alfresco Software</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
<timezone>0</timezone>
</contributor>
<contributor>
<name>Richard Mcknight</name>
<email>[email protected]</email>
<organization>Alfresco Software</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
<timezone>0</timezone>
</contributor>
</contributors>
<scm>
<connection>scm:git:[email protected]:Alfresco/alfresco-support-tools</connection>
<url>scm:git:[email protected]:Alfresco/alfresco-support-tools</url>
<developerConnection>scm:git:[email protected]:Alfresco/alfresco-support-tools</developerConnection>
<tag>1.9</tag>
</scm>
<parent>
<groupId>org.alfresco.maven</groupId>
<artifactId>alfresco-sdk-parent</artifactId>
<version>1.1.1</version>
</parent>
<!-- | SDK properties have sensible defaults in the SDK parent, | but you
can override the properties below to use another version. | For more available
properties see the alfresco-sdk-parent POM. -->
<properties>
<!-- Defines the alfresco edition to compile against. Allowed values are
[org.alfresco|org.alfresco.enterprise] -->
<alfresco.groupId>org.alfresco</alfresco.groupId>
<!-- Defines the alfresco version to compile against -->
<alfresco.version>4.2.0</alfresco.version>
<app.log.root.level>WARN</app.log.root.level>
<alfresco.data.location>alf_data_dev</alfresco.data.location>
<!-- Defines the target WAR artifactId to run this amp, only used with
the -Pamp-to-war switch . | Allowed values: alfresco | share. Defaults to
a repository AMP, but could point to your foundation WAR -->
<alfresco.client.war>alfresco</alfresco.client.war>
<!-- Defines the target WAR groupId to run this amp, only used with the
-Pamp-to-war switch . | Could be org.alfresco | org.alfresco.enterprise or
your corporate groupId -->
<alfresco.client.war.groupId>org.alfresco</alfresco.client.war.groupId>
<!-- Defines the target WAR version to run this amp, only used with the
-Pamp-to-war switch -->
<alfresco.client.war.version>4.2.0</alfresco.client.war.version>
<!-- This controls which properties will be picked in src/test/properties
for embedded run -->
<maven.release.plugin.version>2.5.1</maven.release.plugin.version>
<log4j.patched.version>1.0</log4j.patched.version>
<junit.version>4.8.1</junit.version>
<env>local</env>
</properties>
<!-- Here we realize the connection with the Alfresco selected platform
(e.g.version and edition) -->
<dependencyManagement>
<dependencies>
<!-- This will import the dependencyManagement for all artifacts in the
selected Alfresco version/edition (see http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Importing_Dependencies)
NOTE: You still need to define dependencies in your POM, but you can omit
version as it's enforced by this dependencyManagement. NOTE: It defaults
to the latest version this SDK pom has been tested with, but alfresco version
can/should be overridden in your project's pom -->
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-platform-distribution</artifactId>
<version>${alfresco.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- Following dependencies are needed for compiling Java code in src/main/java;
<scope>provided</scope> is inherited for each of the following; for more
info, please refer to alfresco-platform-distribution POM -->
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j-patched</artifactId>
<version>${log4j.patched.version}</version>
<classifier>AlfrescoPatched</classifier>
</dependency>
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-repository</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>alfresco-public-support-releases</id>
<url>https://artifacts.alfresco.com/nexus/content/repositories/alfresco-public-support-releases</url>
</repository>
<snapshotRepository>
<id>alfresco-support-snapshots</id>
<url>https://artifacts.alfresco.com/nexus/content/repositories/alfresco-support-snapshots</url>
</snapshotRepository>
</distributionManagement>
<!-- This repository is only needed to retrieve Alfresco parent POM. NOTE:
This can be removed when/if Alfresco will be on Maven Central NOTE: The repository
to be used for Alfresco Enterprise artifacts is https://artifacts.alfresco.com/nexus/content/groups/private/.
Please check with Alfresco Support to get credentials to add to your ~/.m2/settings.xml
if you are a Enterprise customer or Partner -->
<repositories>
<repository>
<id>alfresco-private-repository</id>
<url>https://artifacts.alfresco.com/nexus/content/groups/private</url>
</repository>
<repository>
<id>alfresco-public-snapshots</id>
<url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.plugin.version}</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.alfresco.maven.plugin
</groupId>
<artifactId>
alfresco-maven-plugin
</artifactId>
<versionRange>
[1.1.1,)
</versionRange>
<goals>
<goal>set-version</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>