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 di...@apache.org on 2006/07/22 05:35:38 UTC

svn commit: r424516 - /webservices/commons/trunk/modules/neethi/pom.xml

Author: dims
Date: Fri Jul 21 20:35:38 2006
New Revision: 424516

URL: http://svn.apache.org/viewvc?rev=424516&view=rev
Log:
add maven2 based build support

Added:
    webservices/commons/trunk/modules/neethi/pom.xml

Added: webservices/commons/trunk/modules/neethi/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/pom.xml?rev=424516&view=auto
==============================================================================
--- webservices/commons/trunk/modules/neethi/pom.xml (added)
+++ webservices/commons/trunk/modules/neethi/pom.xml Fri Jul 21 20:35:38 2006
@@ -0,0 +1,274 @@
+<?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.apache.ws.commons</groupId>
+  <artifactId>neethi</artifactId>
+  <name>Neethi</name>
+  <version>SNAPSHOT</version>
+  <description>Neethi API</description>
+  <url>http://ws.apache.org/commons/neethi/</url>
+  <issueManagement>
+    <url>http://issues.apache.org/jira/browse/WSCOMMONS</url>
+  </issueManagement>
+  <ciManagement>
+    <system>Continuum</system>
+    <url>unknown</url>
+    <notifiers>
+      <notifier>
+        <configuration>
+          <address>commons-dev@ws.apache.org</address>
+        </configuration>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  <inceptionYear>2004</inceptionYear>
+    <developers>
+        <developer>
+            <name>Sanjiva Weerawarana</name>
+            <id>sanjiva</id>
+            <organization>WSO2 Inc.</organization>
+            <email>sanjiva@opensource.lk</email>
+        </developer>
+        <developer>
+            <name>Davanum Srinivas</name>
+            <id>dims</id>
+            <organization>WSO2 Inc.</organization>
+            <email>dims@yahoo.com</email>
+        </developer>
+        <developer>
+            <name>Dittmann, Werner</name>
+            <id>werner</id>
+            <organization></organization>
+            <email>werner.dittmann@siemens.com</email>
+        </developer>
+        <developer>
+            <name>Sanka Samaranayake</name>
+            <id>sanka</id>
+            <organization>WSO2 Inc.</organization>
+            <email>sanka@apahce.org</email>
+        </developer>
+        <developer>
+            <!-- Documentation -->
+            <name>Chatra Nakkawita</name>
+            <id>chatra</id>
+            <organization>WSO2 Inc.</organization>
+            <email>chatra@gmail.com</email>            
+        </developer>
+    </developers>
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/commons/trunk/modules/neethi</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/commons/trunk/modules/neethi</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/webservices/commons/trunk/modules/neethi</url>
+  </scm>
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+    <testSourceDirectory>test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>src</directory>
+        <includes>
+          <include>**/*.xml</include>
+        </includes>
+        <excludes>
+          <exclude>**/package.html</exclude>
+        </excludes>
+      </resource>
+      <resource>
+        <targetPath>META-INF</targetPath>
+        <directory>${basedir}</directory>
+        <includes>
+          <include>LICENSE*</include>
+        </includes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>test-resources</directory>
+        <includes>
+          <include>**/*.xml</include>
+          <include>**/*.xsd</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <forkMode>once</forkMode>
+          <childDelegation>false</childDelegation>
+          <includes>
+            <include>**/*Test.java</include>
+          </includes>
+          <excludes>
+              <exclude>**/*SpacesTest.java</exclude>
+              <exclude>**/*AbstractOMSerializationTest.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <siteDirectory>${basedir}/site</siteDirectory>
+          <resourcesDirectory>${basedir}/site/resources</resourcesDirectory>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-one-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>install-maven-one-repository</goal>
+              <goal>deploy-maven-one-repository</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <remoteRepositoryId>apache</remoteRepositoryId>
+          <remoteRepositoryUrl>scp://people.apache.org/www/cvs.apache.org/repository</remoteRepositoryUrl>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <tagBase>https://svn.apache.org/repos/asf/webservices/commons/tags/neethi</tagBase>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>release</id>
+      <activation>
+        <property>
+          <name>release</name>
+          <value></value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>src-assembly</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>assembly</goal>
+                </goals>
+                <configuration>
+                  <descriptor>assembly-src.xml</descriptor>
+                  <finalName>neethi-${project.version}</finalName>
+                  <outputDirectory>target/src-package</outputDirectory>
+                  <workDirectory>target/assembly/work</workDirectory>
+                </configuration>
+              </execution>
+              <execution>
+                <id>bin-assembly</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>assembly</goal>
+                </goals>
+                <configuration>
+                  <descriptor>assembly-bin.xml</descriptor>
+                  <finalName>neethi-${project.version}</finalName>
+                  <outputDirectory>target/src-package</outputDirectory>
+                  <workDirectory>target/assembly/work</workDirectory>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>snapshot</id>
+      <name>Snapshot repository</name>
+      <url>http://snapshots.maven.codehaus.org/maven2/</url>
+    </pluginRepository>
+  </pluginRepositories>
+  <dependencies>
+    <dependency>
+        <groupId>org.apache.ws.commons</groupId>
+        <artifactId>axiom</artifactId>
+        <version>SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>avalon-framework</artifactId>
+          <groupId>avalon-framework</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>logkit</artifactId>
+          <groupId>logkit</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>stax</groupId>
+      <artifactId>stax-api</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>woodstox</groupId>
+      <artifactId>wstx-asl</artifactId>
+      <version>2.9.3</version>
+    </dependency>
+    <dependency>
+      <groupId>wsdl4j</groupId>
+      <artifactId>wsdl4j</artifactId>
+      <version>1.5.2</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jdepend-maven-plugin</artifactId>
+        <version>2.0-beta-1-SNAPSHOT</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+        <version>2.0-beta-2-SNAPSHOT</version>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <repository>
+      <id>apache-repo</id>
+      <name>Maven Central Repository</name>
+      <url>scpexe://people.apache.org/www/www.apache.org/dist/maven-repository</url>
+    </repository>
+    <snapshotRepository>
+      <id>apache-snapshots</id>
+      <name>Apache Development Repository</name>
+      <url>scpexe://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+    </snapshotRepository>
+    <site>
+      <id>website</id>
+      <url>scpexe://people.apache.org/www/ws.apache.org/commons/neethi</url>
+    </site>
+  </distributionManagement>
+</project>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org