1 |
<?xml version="1.0" encoding="UTF-8"?><!-- |
2 |
Copyright 2007-2008 Hippo. |
3 |
|
4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
you may not use this file except in compliance with the License. |
6 |
You may obtain a copy of the License at |
7 |
|
8 |
http://www.apache.org/licenses/LICENSE-2.0 |
9 |
|
10 |
Unless required by applicable law or agreed to in writing, software |
11 |
distributed under the License is distributed on an "AS IS" BASIS, |
12 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
See the License for the specific language governing permissions and |
14 |
limitations under the License. |
15 |
--> |
16 |
<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"> |
17 |
<modelVersion>4.0.0</modelVersion> |
18 |
|
19 |
<parent> |
20 |
<groupId>org.onehippo.ecm</groupId> |
21 |
<artifactId>hst_docs</artifactId> |
22 |
<version>1.01.09-SNAPSHOT</version> |
23 |
<relativePath>../pom.xml</relativePath> |
24 |
</parent> |
25 |
|
26 |
<name>hst_docs import files</name> |
27 |
<description>hst_docs import files tool</description> |
28 |
<groupId>org.onehippo.ecm</groupId> |
29 |
<artifactId>hst_docs-import-files</artifactId> |
30 |
<version>1.01.09-SNAPSHOT</version> |
31 |
<packaging>jar</packaging> |
32 |
|
33 |
<dependencies> |
34 |
<dependency> |
35 |
<groupId>org.hippoecm</groupId> |
36 |
<artifactId>hippo-ecm-repository-connector</artifactId> |
37 |
<version>${hippoecm.version}</version> |
38 |
</dependency> |
39 |
<dependency> |
40 |
<groupId>org.hippoecm</groupId> |
41 |
<artifactId>hippo-ecm-tools-content-importer</artifactId> |
42 |
<version>${hippoecm.version}</version> |
43 |
</dependency> |
44 |
<dependency> |
45 |
<groupId>commons-lang</groupId> |
46 |
<artifactId>commons-lang</artifactId> |
47 |
</dependency> |
48 |
<dependency> |
49 |
<groupId>org.slf4j</groupId> |
50 |
<artifactId>slf4j-log4j12</artifactId> |
51 |
<scope>compile</scope> |
52 |
</dependency> |
53 |
<dependency> |
54 |
<groupId>log4j</groupId> |
55 |
<artifactId>log4j</artifactId> |
56 |
<scope>compile</scope> |
57 |
</dependency> |
58 |
<dependency> |
59 |
<groupId>org.apache.geronimo.specs</groupId> |
60 |
<artifactId>geronimo-jta_1.1_spec</artifactId> |
61 |
<version>1.1</version> |
62 |
<scope>compile</scope> |
63 |
</dependency> |
64 |
</dependencies> |
65 |
|
66 |
<build> |
67 |
<plugins> |
68 |
<plugin> |
69 |
<groupId>org.codehaus.mojo</groupId> |
70 |
<artifactId>exec-maven-plugin</artifactId> |
71 |
<executions> |
72 |
<execution> |
73 |
<goals> |
74 |
<goal>java</goal> |
75 |
</goals> |
76 |
</execution> |
77 |
</executions> |
78 |
<configuration> |
79 |
<mainClass>org.hippoecm.tools.importer.ExternalContentImportMain</mainClass> |
80 |
<cleanupDeamonThreads>false</cleanupDeamonThreads> |
81 |
</configuration> |
82 |
</plugin> |
83 |
<plugin> |
84 |
<groupId>org.codehaus.mojo</groupId> |
85 |
<artifactId>appassembler-maven-plugin</artifactId> |
86 |
<version>1.0</version> |
87 |
<configuration> |
88 |
<extraJvmArguments>-Xmx128m</extraJvmArguments> |
89 |
<assembleDirectory>${project.build.directory}/importer</assembleDirectory> |
90 |
<platforms> |
91 |
<platform>windows</platform> |
92 |
<platform>unix</platform> |
93 |
</platforms> |
94 |
<programs> |
95 |
<program> |
96 |
<mainClass>org.hippoecm.tools.importer.ExternalContentImportMain</mainClass> |
97 |
<name>run-import</name> |
98 |
</program> |
99 |
</programs> |
100 |
</configuration> |
101 |
</plugin> |
102 |
<plugin> |
103 |
<groupId>org.apache.maven.plugins</groupId> |
104 |
<artifactId>maven-compiler-plugin</artifactId> |
105 |
<configuration> |
106 |
<source>1.5</source> |
107 |
<target>1.5</target> |
108 |
</configuration> |
109 |
</plugin> |
110 |
</plugins> |
111 |
</build> |
112 |
|
113 |
</project> |