-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
89 lines (82 loc) · 2.81 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
<?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.extension</groupId>
<artifactId>alfresco-version-baselining</artifactId>
<packaging>amp</packaging>
<!-- Comment the previous line and uncomment the following line if you wish to generate an Eclipse project.
The Maven Eclipse plugin generates the wrong Eclipse project type if packaging != jar. -->
<!--
<packaging>jar</packaging>
-->
<name>Alfresco Version Baselining</name>
<version>0.1</version>
<repositories>
<repository>
<id>jboss-public</id>
<name>JBoss Public Repository</name>
<url>http://repository.jboss.com/maven2</url>
</repository>
<repository>
<id>ss-public</id>
<name>SourceSense Public Repository</name>
<url>http://repository.sourcesense.com/nexus/content/repositories/alfresco.public.releases/</url>
</repository>
<repository>
<id>alfresco-employee-repository</id>
<name>Alfresco Employee Repository (private)</name>
<url>https://svn.alfresco.com/repos/field/maven</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>ss-public</id>
<name>SourceSense Public Repository</name>
<url>http://repository.sourcesense.com/nexus/content/repositories/alfresco.public.releases/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- Non-Alfresco dependencies -->
<!-- Alfresco Community -->
<!--
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-repository</artifactId>
<version>3.0Stable</version>
<classifier>labs</classifier>
<scope>provided</scope>
</dependency>
-->
<!-- Alfresco Enterprise 3.1SP1 -->
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-repository</artifactId>
<version>3.1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.alfresco.maven.plugin</groupId>
<artifactId>maven-amp-plugin</artifactId>
<version>3.0.0</version>
<extensions>true</extensions>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>