<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> | |
<parent> | |
<artifactId>cocoon-core-modules</artifactId> | |
<groupId>org.apache.cocoon</groupId> | |
<version>3</version> | |
<relativePath>../../pom.xml</relativePath> | |
</parent> | |
<artifactId>cocoon-pipeline-api</artifactId> | |
<version>1.0.0-M1</version> | |
<packaging>jar</packaging> | |
<name>Cocoon Pipeline API</name> | |
<description> | |
Interfaces for SAX pipelines: ProcessingPipeline, sitemap components | |
and basic XML interfaces, the environment abstraction, caching interfaces | |
and needed exceptions. | |
</description> | |
<url>http://cocoon.apache.org/${docs.m.pipeline-api.relPath}</url> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-site-plugin</artifactId> | |
</plugin> | |
<!--plugin> | |
<groupId>org.daisycms</groupId> | |
<artifactId>daisy-maven-plugin</artifactId> | |
<configuration> | |
<createSiteXmlOnly>true</createSiteXmlOnly> | |
</configuration> | |
</plugin--> | |
</plugins> | |
</build> | |
<properties> | |
<docs.name>${project.name}</docs.name> | |
<docs.version>${docs.m.pipeline-api.version}</docs.version> | |
</properties> | |
<distributionManagement> | |
<site> | |
<id>website</id> | |
<url>${docs.deploymentBaseUrl}/${docs.m.pipeline-api.relPath}</url> | |
</site> | |
</distributionManagement> | |
<dependencies> | |
<!-- Excalibur --> | |
<dependency> | |
<groupId>org.apache.avalon.framework</groupId> | |
<artifactId>avalon-framework-api</artifactId> | |
<version>4.3</version> | |
<exclusions> | |
<exclusion> | |
<groupId>org.apache.avalon.logkit</groupId> | |
<artifactId>avalon-logkit</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.excalibur.components.sourceresolve</groupId> | |
<artifactId>excalibur-sourceresolve</artifactId> | |
<version>2.1</version> | |
<exclusions> | |
<exclusion> | |
<groupId>org.apache.avalon.framework</groupId> | |
<artifactId>avalon-framework-impl</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.avalon.logkit</groupId> | |
<artifactId>avalon-logkit</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.excalibur.components.xmlutil</groupId> | |
<artifactId>excalibur-xmlutil</artifactId> | |
<version>2.1</version> | |
<exclusions> | |
<exclusion> | |
<groupId>org.apache.excalibur.testcase</groupId> | |
<artifactId>excalibur-testcase</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.excalibur.components.pool</groupId> | |
<artifactId>excalibur-pool-instrumented</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.excalibur.components.pool</groupId> | |
<artifactId>excalibur-pool-api</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.excalibur.components.pool</groupId> | |
<artifactId>excalibur-pool-impl</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.avalon.framework</groupId> | |
<artifactId>avalon-framework-impl</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.excalibur.components.store</groupId> | |
<artifactId>excalibur-store</artifactId> | |
</exclusion> | |
<!-- exclusion> | |
<groupId>org.apache.excalibur.components.sourceresolve</groupId> | |
<artifactId>excalibur-sourceresolve</artifactId> | |
</exclusion --> | |
<exclusion> | |
<groupId>org.apache.excalibur.containerkit.instrument</groupId> | |
<artifactId>excalibur-instrument-api</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.avalon.logkit</groupId> | |
<artifactId>avalon-logkit</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<!-- Commons --> | |
<dependency> | |
<groupId>commons-lang</groupId> | |
<artifactId>commons-lang</artifactId> | |
<version>2.1</version> | |
</dependency> | |
<!-- Servlet API --> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>servlet-api</artifactId> | |
<version>2.4</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- Test Dependencies --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>3.8.2</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |