forked from acando/alfresco-listmanager
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
132 lines (124 loc) · 5.11 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
<?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>com.acando.alfresco</groupId>
<artifactId>listmanager</artifactId>
<version>1.5.4</version>
<name>Alfresco Listmanager Parent POM</name>
<packaging>pom</packaging>
<parent>
<groupId>org.alfresco.maven</groupId>
<artifactId>alfresco-sdk-parent</artifactId>
<version>1.1.1</version>
</parent>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>masse</id>
<name>Marcus Cedergren</name>
<email>[email protected]</email>
<organization>Acando</organization>
<organizationUrl>http://www.acando.com</organizationUrl>
<timezone>+1</timezone>
</developer>
<developer>
<id>billerby</id>
<name>Erik Billerby</name>
<email>[email protected]</email>
<organization>Redpill Linpro</organization>
<organizationUrl>http://www.redpill-linpro.se</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<url>https://github.com/acando/alfresco-listmanager</url>
<connection>scm:git:git://github.com/Redpill-Linpro/alfresco-listmanager.git</connection>
<developerConnection>scm:git:[email protected]:Redpill-Linpro/alfresco-listmanager.git</developerConnection>
<tag>listmanager-1.5.0</tag>
</scm>
<modules>
<module>listmanager-jar</module>
<module>listmanager-amp</module>
</modules>
<!-- | 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>
<alfresco.groupId>org.alfresco</alfresco.groupId>
<alfresco.version>4.2.f</alfresco.version>
<app.log.root.level>WARN</app.log.root.level>
<alfresco.data.location>alf_data_dev</alfresco.data.location>
<!-- This controls which properties will be picked in src/test/properties for embedded run -->
<env>local</env>
<alfresco.repository.url>http://localhost:8080/repository-amp</alfresco.repository.url>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</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>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<!-- This repository is only needed to retrieve Alfresco parent POM. NOTE: This can be removed when/if Alfresco will be on Maven Central -->
<repositories>
<repository>
<id>redpill-linpro</id>
<url>https://maven.redpill-linpro.com/nexus/content/groups/public</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>alfresco-public</id>
<url>https://artifacts.alfresco.com/nexus/content/groups/public</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>
<distributionManagement>
<repository>
<id>redpill-linpro-releases</id>
<url>https://maven.redpill-linpro.com/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>redpill-linpro-snapshots</id>
<url>https://maven.redpill-linpro.com/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>