blob: b9fb7e4103cf846997bbcad9e1193c06a2344f73 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--+
| @version $Id$
|
+-->
<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.apache.cocoon</groupId>
<artifactId>cocoon-documentation-sitemaptags2daisy</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Cocoon: Documentation: tool to sync the sitemap component info to the Daisy CMS</name>
<properties>
<daisy.version>2.4.1</daisy.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<configuration>
<!-- Generate a shell script and bat file to launch the tool. -->
<tasks>
<property name="runtimeClasspath" refid="maven.runtime.classpath"/>
<echo file="target/sitemaptags_to_daisy.sh">CLASSPATH="${runtimeClasspath}"
export CLASSPATH
java org.apache.cocoon.documentation.daisy.SitemapTagsToDaisy
</echo>
<echo file="target/sitemaptags_to_daisy.bat">set CLASSPATH="${runtimeClasspath}"
java org.apache.cocoon.documentation.daisy.SitemapTagsToDaisy
</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Seemingly long list of dependencies, but most are runtime dependencies.
If/when Daisy is build using maven2 itself, transitive dependencies
will probably allow to clean up this list -->
<dependencies>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-repository-api</artifactId>
<version>${daisy.version}</version>
</dependency>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-repository-xmlschema-bindings</artifactId>
<version>${daisy.version}</version>
</dependency>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-repository-client-impl</artifactId>
<version>${daisy.version}</version>
</dependency>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-repository-common-impl</artifactId>
<version>${daisy.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-repository-spi</artifactId>
<version>${daisy.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-jmsclient-api</artifactId>
<version>${daisy.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>2.0.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>concurrent</groupId>
<artifactId>concurrent</artifactId>
<version>1.3.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xbean</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
<version>1.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-htmlcleaner</artifactId>
<version>${daisy.version}</version>
</dependency>
<dependency>
<groupId>daisy</groupId>
<artifactId>daisy-util</artifactId>
<version>${daisy.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>qdox</groupId>
<artifactId>qdox</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>0.9.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>nekohtml</groupId>
<artifactId>nekodtd</artifactId>
<version>0.1.11</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.6.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
<version>2.6.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework-api</artifactId>
<version>4.2.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>daisy</id>
<url>http://daisycms.org/maven/maven2/deploy/</url>
</repository>
<repository>
<id>maven2-repository for neko</id>
<url>http://mirrors.ibiblio.org/maven2/</url>
</repository>
</repositories>
</project>