-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom-comm.xml
131 lines (124 loc) · 4.35 KB
/
pom-comm.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
<?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-bulk-filesystem-import</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 does the wrong thing if packaging != jar. -->
<!--
<packaging>jar</packaging>
-->
<name>Alfresco Bulk Filesystem Import (for Alfresco Community)</name>
<version>1.1-SNAPSHOT</version>
<repositories>
<repository>
<id>jboss-public</id>
<name>JBoss Public Repository</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestone Repository</name>
<url>http://extensions.springframework.org/milestone</url>
</repository>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshot Repository</name>
<url>http://extensions.springframework.org/snapshot</url>
</repository>
<repository>
<id>alfresco-public</id>
<name>Alfresco Public Repository</name>
<url>http://maven.alfresco.com/nexus/content/repositories/releases</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>alfresco-public</id>
<name>Alfresco</name>
<url>http://maven.alfresco.com/nexus/content/repositories/releases</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- Non-Alfresco dependencies -->
<!-- Alfresco Community 3.3.0-preview-1 (as of 2010-12-05 maven.alfresco.com doesn't have the final Alfresco Community 3.3 artifacts) -->
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-core</artifactId>
<version>3.3.0-preview-1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-repository</artifactId>
<version>3.3.0-preview-1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-webscript-framework</artifactId>
<version>3.3.0-preview-1</version>
<scope>provided</scope>
</dependency>
<!-- Non Alfresco dependencies - only required for community artifacts
since they have incomplete POMs -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>3.0.2.RELEASE</version>
<scope>provided</scope>
</dependency>
<!-- Non-Alfresco dependencies -->
<dependency>
<groupId>org.springframework.extensions.surf</groupId>
<artifactId>spring-webscripts-api</artifactId>
<version>1.0.0.CI-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.0</version>
<type>jar</type>
<scope>test</scope>
<optional>true</optional>
</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.2</version>
<extensions>true</extensions>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>