You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by az...@apache.org on 2008/08/28 17:52:54 UTC

svn commit: r689861 - /webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml

Author: azeez
Date: Thu Aug 28 08:52:53 2008
New Revision: 689861

URL: http://svn.apache.org/viewvc?rev=689861&view=rev
Log:
Adding the c14n pom

Added:
    webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml

Added: webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml?rev=689861&view=auto
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml (added)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml Thu Aug 28 08:52:53 2008
@@ -0,0 +1,71 @@
+<?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.
+  -->
+
+<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">
+  <parent>
+    <artifactId>axiom</artifactId>
+    <groupId>org.apache.ws.commons.axiom</groupId>
+    <version>SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ws.commons.axiom</groupId>
+  <artifactId>axiom-c14n</artifactId>
+  <name/>
+  <version>SNAPSHOT</version>
+  <description/>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ws.commons.axiom</groupId>
+      <artifactId>axiom-api</artifactId>
+      <version>1.2.7</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ws.commons.axiom</groupId>
+      <artifactId>axiom-impl</artifactId>
+      <version>1.2.7</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>wstx-asl</artifactId>
+      <version>3.2.6</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+    </dependency>
+  </dependencies>
+  <build>
+      <plugins>
+          <plugin>
+              <artifactId>maven-surefire-plugin</artifactId>
+              <configuration>
+                  <includes>
+                      <include>**/*Test.java</include>
+                      <include>**/*TestCase.java</include>
+                  </includes>
+                  <excludes>
+                      <exclude>**/*AbstractCanonicalizerTest.java</exclude>
+                  </excludes>
+              </configuration>
+          </plugin>
+      </plugins>
+	</build>
+</project>
\ No newline at end of file