This repository has been archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
118 lines (107 loc) · 3.84 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
<?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>
<version>1.3.5-SNAPSHOT</version>
<packaging>amp</packaging>
<name>Alfresco Bulk Filesystem Import</name>
<description>Alfresco Bulk Filesystem Import for Alfresco v4.0, v4.1 and v4.2.</description>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>pmonks</id>
<name>Peter Monks</name>
<email>pmonks@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:hg:https://code.google.com/p/alfresco-bulk-filesystem-import/</connection>
<developerConnection>scm:hg:https://code.google.com/p/alfresco-bulk-filesystem-import/</developerConnection>
<url>https://code.google.com/p/alfresco-bulk-filesystem-import/</url>
</scm>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/alfresco-bulk-filesystem-import/issues/list</url>
</issueManagement>
<parent>
<groupId>org.alfresco.maven</groupId>
<artifactId>alfresco-sdk-parent</artifactId>
<version>1.1.1</version>
</parent>
<properties>
<version.java>1.6</version.java>
<version.compiler-plugin>3.1</version.compiler-plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<alfresco.groupId>org.alfresco</alfresco.groupId>
<alfresco-community.version>4.2.f</alfresco-community.version>
<alfresco-enterprise.version>4.2.1</alfresco-enterprise.version>
<alfresco.client.war.groupId>${alfresco.groupId}</alfresco.client.war.groupId>
<alfresco.client.war.version>${alfresco.version}</alfresco.client.war.version>
<project.build.finalName>${project.build.finalName}-${buildnumber}.amp</project.build.finalName>
<junit.version>4.8.1</junit.version>
<env>local</env>
</properties>
<profiles>
<profile>
<id>enterprise</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<alfresco.version>${alfresco-enterprise.version}</alfresco.version>
</properties>
</profile>
<profile>
<id>community</id>
<properties>
<alfresco.version>${alfresco-community.version}</alfresco.version>
</properties>
</profile>
</profiles>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-platform-distribution</artifactId>
<version>${alfresco.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-repository</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.compiler-plugin}</version>
<configuration>
<source>${version.java}</source>
<target>${version.java}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>