Author: sanka
Date: Sun Nov 12 21:43:17 2006
New Revision: 474162
URL: http://svn.apache.org/viewvc?view=rev&rev=474162
Log:
Temporary fix to get the dist-bin working
in maven 1.x.
Modified:
webservices/commons/trunk/modules/neethi/maven.xml
webservices/commons/trunk/modules/neethi/pom.xml
Modified: webservices/commons/trunk/modules/neethi/maven.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/maven.xml?view=diff&rev=474162&r1=474161&r2=474162
==============================================================================
--- webservices/commons/trunk/modules/neethi/maven.xml (original)
+++ webservices/commons/trunk/modules/neethi/maven.xml Sun Nov 12 21:43:17 2006
@@ -19,139 +19,157 @@
<!-- $Rev: 330371 $ $Date: 2005-11-02 16:57:37 -0500 (Wed, 02 Nov 2005) $ -->
-<project
- default="jar"
- xmlns:j="jelly:core"
- xmlns:u="jelly:util"
- xmlns:ant="jelly:ant"
- xmlns:maven="jelly:maven"
- xmlns:define="jelly:define"
- xmlns:velocity="jelly:velocity"
- >
+<project
+ default="jar"
+ xmlns:j="jelly:core"
+ xmlns:u="jelly:util"
+ xmlns:ant="jelly:ant"
+ xmlns:maven="jelly:maven"
+ xmlns:define="jelly:define"
+ xmlns:velocity="jelly:velocity">
- <j:set var="dist.name" value="${pom.artifactId}-${pom.currentVersion}"/>
-
- <ant:property name="build.dist.dir" value="${maven.build.dir}/dist" />
-
- <ant:property name="jar.file" value="${dist.name}.jar" />
-
- <ant:property name="license.file" value="LICENSE.txt" />
-
- <ant:property name="notice.file" value="NOTICE.txt" />
-
- <ant:property name="readme.file" value="README.txt" />
-
- <ant:property name="authors.file" value="AUTHORS.txt" />
-
- <ant:property name="release.note.file" value="RELEASE-NOTE.txt"/>
+ <j:set var="dist.name" value="${pom.artifactId}-${pom.currentVersion}"/>
+
+ <ant:property name="build.dist.dir" value="${maven.build.dir}/dist" />
+
+ <ant:property name="jar.file" value="${dist.name}.jar" />
+
+ <ant:property name="license.file" value="LICENSE.txt" />
+
+ <ant:property name="notice.file" value="NOTICE.txt" />
+
+ <ant:property name="readme.file" value="README.txt" />
+
+ <ant:property name="authors.file" value="AUTHORS.txt" />
+
+ <ant:property name="release.note.file" value="RELEASE-NOTE.txt"/>
<!-- ==================== -->
<!-- Default Global Goals -->
<!-- ==================== -->
- <goal name="jar">
- <attainGoal name="jar:install"/>
- </goal>
-
- <goal name="default">
- <attainGoal name="jar:install"/>
- </goal>
-
- <goal name="build">
-
- <attainGoal name="default"/>
- </goal>
-
- <goal name="rebuild">
- <attainGoal name="clean"/>
- <attainGoal name="build"/>
- </goal>
+ <goal name="jar">
+ <attainGoal name="jar:install"/>
+ </goal>
+
+ <goal name="default">
+ <attainGoal name="jar:install"/>
+ </goal>
+
+ <goal name="build">
+
+ <attainGoal name="default"/>
+ </goal>
+
+ <goal name="rebuild">
+ <attainGoal name="clean"/>
+ <attainGoal name="build"/>
+ </goal>
<!-- ================================================================ -->
<!--- Create the Source Distribution -->
<!-- ================================================================ -->
-
- <goal name="dist-src">
- <ant:property name="dist.src.root.file"
value="${build.dist.dir}/dist-src"/>
+
+ <goal name="dist-src">
+ <ant:property name="dist.src.root.file"
value="${build.dist.dir}/dist-src"/>
- <ant:property name="dist.src.file"
value="${dist.src.root.file}/${dist.name}-src" />
+ <ant:property name="dist.src.file"
value="${dist.src.root.file}/${dist.name}-src" />
<!-- <mkdir dir="${build.dist.dir}"/> -->
- <mkdir dir="${dist.src.file}" />
+ <mkdir dir="${dist.src.file}" />
- <ant:copy todir="${dist.src.file}">
- <ant:fileset dir=".">
- <ant:include name="**"/>
- <ant:exclude name="**/target/**"/>
- <ant:exclude name="**/.svn/**"/>
- <ant:exclude name="**/bin/**"/>
- <ant:exclude name=".*"/>
+ <ant:copy todir="${dist.src.file}">
+ <ant:fileset dir=".">
+ <ant:include name="**"/>
+ <ant:exclude name="**/target/**"/>
+ <ant:exclude name="**/.svn/**"/>
+ <ant:exclude name="**/bin/**"/>
+ <ant:exclude name=".*"/>
<!-- <ant:exclude name="**/*.license"/> -->
- </ant:fileset>
- </ant:copy>
-
- <ant:zip destfile="${build.dist.dir}/${dist.name}-src.zip"
basedir="${dist.src.root.file}"/>
+ </ant:fileset>
+ </ant:copy>
+
+ <ant:zip destfile="${build.dist.dir}/${dist.name}-src.zip"
basedir="${dist.src.root.file}"/>
- <ant:tar tarfile="${build.dist.dir}/${dist.name}-src.tar"
basedir="${dist.src.root.file}"/>
-
- <ant:gzip src="${build.dist.dir}/${dist.name}-src.tar"
zipfile="${build.dist.dir}/${dist.name}-src.tar.gz"/>
-
- <ant:delete file="${build.dist.dir}/${dist.name}-src.tar"/>
+ <ant:tar tarfile="${build.dist.dir}/${dist.name}-src.tar"
basedir="${dist.src.root.file}"/>
- <ant:delete dir = "${dist.src.root.file}"/>
+ <ant:gzip src="${build.dist.dir}/${dist.name}-src.tar"
zipfile="${build.dist.dir}/${dist.name}-src.tar.gz"/>
- </goal>
+ <ant:delete file="${build.dist.dir}/${dist.name}-src.tar"/>
+
+ <ant:delete dir="${dist.src.root.file}"/>
+
+ </goal>
<!-- ================================================================ -->
- <!--- Create the Binary Distribution -->
+ <!--- Create the Javadocs -->
<!-- ================================================================ -->
+
+ <goal name="javadocs">
+ <ant:javadoc packagenames="org.apache.neethi.*"
+ sourcepath="${basedir}/src/main/java"
+ defaultexcludes="yes"
+ destdir="${maven.docs.dest}/apidocs"
+ author="true"
+ version="true"
+ use="true"
+ windowtitle="${pom.name} ${pom.currentVersion}
API"
+ doctitle="${pom.name} ${pom.currentVersion}
API">
+
+ <classpath refid="maven.dependency.classpath" />
+ </ant:javadoc>
+ </goal>
- <goal name="dist-bin" prereqs="default,javadoc">
-
+ <!-- ================================================================ -->
+ <!--- Create the Binary Distribution -->
+ <!-- ================================================================ -->
+
+ <goal name="dist-bin" prereqs="default,javadocs">
- <property name="dist.bin.root.file" value="${build.dist.dir}/dist-bin"
/>
+
+ <property name="dist.bin.root.file"
value="${build.dist.dir}/dist-bin" />
- <property name="dist.bin.file"
value="${dist.bin.root.file}/${dist.name}-bin"/>
+ <property name="dist.bin.file"
value="${dist.bin.root.file}/${dist.name}-bin"/>
- <mkdir dir="${dist.bin.file}" />
+ <mkdir dir="${dist.bin.file}" />
- <mkdir dir="${dist.bin.file}/docs" />
+ <mkdir dir="${dist.bin.file}/docs" />
- <mkdir dir="${dist.bin.file}/docs/apidocs"/>
+ <mkdir dir="${dist.bin.file}/docs/apidocs"/>
- <mkdir dir="${dist.bin.file}/lib"/>
+ <mkdir dir="${dist.bin.file}/lib"/>
- <ant:copy todir="${dist.bin.file}/docs/apidocs">
- <ant:fileset dir="target/docs/apidocs/">
- <ant:include name="**"/>
- </ant:fileset>
- </ant:copy>
+ <ant:copy todir="${dist.bin.file}/docs/apidocs">
+ <ant:fileset dir="target/docs/apidocs/">
+ <ant:include name="**"/>
+ </ant:fileset>
+ </ant:copy>
- <ant:copy file="target/${jar.file}" todir="${dist.bin.file}/lib" />
+ <ant:copy file="target/${jar.file}"
todir="${dist.bin.file}/lib" />
- <ant:copy file="${license.file}" todir="${dist.bin.file}" />
+ <ant:copy file="${license.file}" todir="${dist.bin.file}" />
- <ant:copy file="${readme.file}" todir="${dist.bin.file}" />
+ <ant:copy file="${readme.file}" todir="${dist.bin.file}" />
- <ant:copy file="${notice.file}" todir="${dist.bin.file}" />
+ <ant:copy file="${notice.file}" todir="${dist.bin.file}" />
- <ant:copy file="${authors.file}" todir="${dist.bin.file}" />
-
- <ant:copy file="${release.note.file}" todir="${dist.bin.file}" />
+ <ant:copy file="${authors.file}" todir="${dist.bin.file}" />
- <ant:zip destfile="${build.dist.dir}/${dist.name}-bin.zip"
basedir="${dist.bin.root.file}"/>
+ <ant:copy file="${release.note.file}" todir="${dist.bin.file}"
/>
- <ant:tar tarfile="${build.dist.dir}/${dist.name}-bin.tar"
basedir="${dist.bin.root.file}"/>
+ <ant:zip destfile="${build.dist.dir}/${dist.name}-bin.zip"
basedir="${dist.bin.root.file}"/>
- <ant:gzip src="${build.dist.dir}/${dist.name}-bin.tar"
zipfile="${build.dist.dir}/${dist.name}-bin.tar.gz"/>
+ <ant:tar tarfile="${build.dist.dir}/${dist.name}-bin.tar"
basedir="${dist.bin.root.file}"/>
- <ant:delete file="${build.dist.dir}/${dist.name}-bin.tar"/>
+ <ant:gzip src="${build.dist.dir}/${dist.name}-bin.tar"
zipfile="${build.dist.dir}/${dist.name}-bin.tar.gz"/>
- <ant:delete dir = "${dist.bin.root.file}"/>
-
- </goal>
-
+ <ant:delete file="${build.dist.dir}/${dist.name}-bin.tar"/>
+
+ <ant:delete dir="${dist.bin.root.file}"/>
+
+ </goal>
+
</project>
Modified: webservices/commons/trunk/modules/neethi/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/neethi/pom.xml?view=diff&rev=474162&r1=474161&r2=474162
==============================================================================
--- webservices/commons/trunk/modules/neethi/pom.xml (original)
+++ webservices/commons/trunk/modules/neethi/pom.xml Sun Nov 12 21:43:17 2006
@@ -1,309 +1,311 @@
-<?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.neethi</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>[email protected]</address>
- </configuration>
- </notifier>
- </notifiers>
- </ciManagement>
- <mailingLists>
- <mailingList>
- <name>WS Commons Developers</name>
- <subscribe>[EMAIL PROTECTED]</subscribe>
- <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
- <post>[email protected]</post>
-
<archive>http://mail-archives.apache.org/mod_mbox/ws-commons-dev/</archive>
- </mailingList>
- </mailingLists>
- <inceptionYear>2004</inceptionYear>
- <developers>
- <developer>
- <name>Sanjiva Weerawarana</name>
- <id>sanjiva</id>
- <organization>WSO2 Inc.</organization>
- <email>[EMAIL PROTECTED]</email>
- </developer>
- <developer>
- <name>Davanum Srinivas</name>
- <id>dims</id>
- <organization>WSO2 Inc.</organization>
- <email>[EMAIL PROTECTED]</email>
- </developer>
- <developer>
- <name>Dittmann, Werner</name>
- <id>werner</id>
- <organization></organization>
- <email>[EMAIL PROTECTED]</email>
- </developer>
- <developer>
- <name>Sanka Samaranayake</name>
- <id>sanka</id>
- <organization>WSO2 Inc.</organization>
- <email>[EMAIL PROTECTED]</email>
- </developer>
- <developer>
- <!-- Documentation -->
- <name>Chatra Nakkawita</name>
- <id>chatra</id>
- <organization>WSO2 Inc.</organization>
- <email>[EMAIL PROTECTED]</email>
- </developer>
- </developers>
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <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>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.3</source>
- <target>1.3</target>
- </configuration>
- </plugin>
- <plugin>
+<?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.neethi</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>[email protected]</address>
+ </configuration>
+ </notifier>
+ </notifiers>
+ </ciManagement>
+ <mailingLists>
+ <mailingList>
+ <name>WS Commons Developers</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <post>[email protected]</post>
+
<archive>http://mail-archives.apache.org/mod_mbox/ws-commons-dev/</archive>
+ </mailingList>
+ </mailingLists>
+ <inceptionYear>2004</inceptionYear>
+ <developers>
+ <developer>
+ <name>Sanjiva Weerawarana</name>
+ <id>sanjiva</id>
+ <organization>WSO2 Inc.</organization>
+ <email>[EMAIL PROTECTED]</email>
+ </developer>
+ <developer>
+ <name>Davanum Srinivas</name>
+ <id>dims</id>
+ <organization>WSO2 Inc.</organization>
+ <email>[EMAIL PROTECTED]</email>
+ </developer>
+ <developer>
+ <name>Dittmann, Werner</name>
+ <id>werner</id>
+ <organization></organization>
+ <email>[EMAIL PROTECTED]</email>
+ </developer>
+ <developer>
+ <name>Sanka Samaranayake</name>
+ <id>sanka</id>
+ <organization>WSO2 Inc.</organization>
+ <email>[EMAIL PROTECTED]</email>
+ </developer>
+ <developer>
+ <!-- Documentation -->
+ <name>Chatra Nakkawita</name>
+ <id>chatra</id>
+ <organization>WSO2 Inc.</organization>
+ <email>[EMAIL PROTECTED]</email>
+ </developer>
+ </developers>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+ <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>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.3</source>
+ <target>1.3</target>
+ </configuration>
+ </plugin>
+ <plugin>
<!-- This should possibly better be done by using a resource
definition. However, if we declare a resource with
${basedir} as the base directory, then the
maven-source-plugin will add the whole directory to
its contents.
-->
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.1</version>
- <executions>
- <execution>
- <phase>generate-resources</phase>
- <configuration>
- <tasks>
- <copy todir="${project.build.outputDirectory}/META-INF">
- <fileset dir="${basedir}">
- <include name="LICENSE.txt"/>
- <include name="NOTICE.txt"/>
- </fileset>
- </copy>
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <forkMode>once</forkMode>
- <childDelegation>false</childDelegation>
- <excludes>
- <exclude>**/PolicyTestCase.java</exclude>
- </excludes>
- <includes>
- <include>**/*Test*.java</include>
- </includes>
- </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>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/main/assembly/bin.xml</descriptor>
- <descriptor>src/main/assembly/src.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <attach>true</attach>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>release</id>
- <activation>
- <property>
- <name>release</name>
- <value></value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <attach>true</attach>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- <pluginRepositories>
- <pluginRepository>
- <id>snapshot</id>
- <name>Snapshot repository</name>
- <url>http://snapshots.maven.codehaus.org/maven2/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>false</enabled>
- </releases>
- </pluginRepository>
- <pluginRepository>
- <id>snapshot-apache</id>
- <name>Apache Snapshot repository</name>
- <url>http://people.apache.org/repo/m2-snapshot-repository</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>false</enabled>
- </releases>
- </pluginRepository>
- </pluginRepositories>
- <dependencies>
- <dependency>
- <groupId>org.apache.ws.commons.axiom</groupId>
- <artifactId>axiom-api</artifactId>
- <version>SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ws.commons.axiom</groupId>
- <artifactId>axiom-impl</artifactId>
- <version>SNAPSHOT</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.2</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>woodstox</groupId>
- <artifactId>wstx-asl</artifactId>
- <version>2.9.3</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>
- </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>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+ <execution>
+
<phase>generate-resources</phase>
+ <configuration>
+ <tasks>
+ <copy
todir="${project.build.outputDirectory}/META-INF">
+
<fileset dir="${basedir}">
+
<include name="LICENSE.txt"/>
+
<include name="NOTICE.txt"/>
+
</fileset>
+ </copy>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <forkMode>once</forkMode>
+ <childDelegation>false</childDelegation>
+ <excludes>
+
<exclude>**/PolicyTestCase.java</exclude>
+ </excludes>
+ <includes>
+
<include>**/*Test*.java</include>
+ </includes>
+ </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>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+
<descriptor>src/main/assembly/bin.xml</descriptor>
+
<descriptor>src/main/assembly/src.xml</descriptor>
+ </descriptors>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <attach>true</attach>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <profiles>
+ <profile>
+ <id>release</id>
+ <activation>
+ <property>
+ <name>release</name>
+ <value></value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+
<artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+
<goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <attach>true</attach>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>snapshot</id>
+ <name>Snapshot repository</name>
+ <url>http://snapshots.maven.codehaus.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ <pluginRepository>
+ <id>snapshot-apache</id>
+ <name>Apache Snapshot repository</name>
+
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ </pluginRepositories>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ws.commons.axiom</groupId>
+ <artifactId>axiom-api</artifactId>
+ <version>SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ws.commons.axiom</groupId>
+ <artifactId>axiom-impl</artifactId>
+ <version>SNAPSHOT</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.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>woodstox</groupId>
+ <artifactId>wstx-asl</artifactId>
+ <version>2.9.3</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>
+ </dependencies>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <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>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]