You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-dev@ws.apache.org by sc...@apache.org on 2004/12/01 22:57:32 UTC

svn commit: r109381 - /incubator/muse/trunk/maven.xml /incubator/muse/trunk/pomdependencies.xsl /incubator/muse/trunk/project.xml

Author: scamp
Date: Wed Dec  1 13:57:31 2004
New Revision: 109381

URL: http://svn.apache.org/viewcvs?view=rev&rev=109381
Log:
added info about dependencies and a goal and xsl stylesheet to generate an html file with dep list
Added:
   incubator/muse/trunk/pomdependencies.xsl
Modified:
   incubator/muse/trunk/maven.xml
   incubator/muse/trunk/project.xml

Modified: incubator/muse/trunk/maven.xml
Url: http://svn.apache.org/viewcvs/incubator/muse/trunk/maven.xml?view=diff&rev=109381&p1=incubator/muse/trunk/maven.xml&r1=109380&p2=incubator/muse/trunk/maven.xml&r2=109381
==============================================================================
--- incubator/muse/trunk/maven.xml	(original)
+++ incubator/muse/trunk/maven.xml	Wed Dec  1 13:57:31 2004
@@ -443,5 +443,12 @@
               eol="lf"
               includes="src/wsdl/**, src/bindings/**" />
   </goal>
-    
+  <goal name="pomdep" description="Creates a deps.html file under target.  Deps.html contains info on the project dependencies.">
+     <mkdir dir="${maven.war.build.dir}" />
+     ${systemScope.setProperty('javax.xml.transform.TransformerFactory','org.apache.xalan.processor.TransformerFactoryImpl')}     
+     <style in="${basedir}/project.xml" out="${maven.war.build.dir}/deps.html"
+       style="${basedir}/pomdependencies.xsl" 
+       classpathref="maven.dependency.classpath"
+       processor="trax"/>         
+  </goal>  
 </project>

Added: incubator/muse/trunk/pomdependencies.xsl
Url: http://svn.apache.org/viewcvs/incubator/muse/trunk/pomdependencies.xsl?view=auto&rev=109381
==============================================================================
--- (empty file)
+++ incubator/muse/trunk/pomdependencies.xsl	Wed Dec  1 13:57:31 2004
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40">
+	<xsl:output method="html"/>
+	<xsl:template match="/">
+		<HTML>
+			<HEAD>
+				<TITLE>
+					<xsl:apply-templates select="//project/name"/> Project Dependencies</TITLE>
+			</HEAD>
+			<BODY>
+				<h1 align="center">
+					<xsl:apply-templates select="//project/name"/> Project Dependencies</h1>
+				<br/>
+				<xsl:apply-templates select="//project/dependencies"/>
+			</BODY>
+		</HTML>
+	</xsl:template>
+	<xsl:template match="project/dependencies/dependency">
+		<TABLE border="1" width="600">
+			<TR>
+				<td bgcolor="gray" width="100">
+					<strong>Jar Name</strong>
+				</td>
+				<td>
+					<xsl:apply-templates select="artifactId"/>-<xsl:apply-templates select="version"/>.jar</td>
+			</TR>
+			<TR>
+				<td>
+					<strong>GroupId</strong>
+				</td>
+				<td>
+					<xsl:apply-templates select="groupId"/>
+				</td>
+			</TR>
+			<TR>
+				<td>
+					<strong>ArtifactId</strong>
+				</td>
+				<td>
+					<xsl:apply-templates select="artifactId"/>
+				</td>
+			</TR>
+			<TR>
+				<td>
+					<strong>Version</strong>
+				</td>
+				<td>
+					<xsl:apply-templates select="version"/>
+				</td>
+			</TR>
+			<TR>
+				<td>
+					<strong>Url</strong>
+				</td>
+				<td>
+					<xsl:apply-templates select="url"/>
+				</td>
+			</TR>
+			<TR>
+				<td>
+					<strong>Properties</strong>
+				</td>
+				<td>
+					<xsl:apply-templates select="properties"/>
+				</td>
+			</TR>
+		</TABLE>
+		<br/>
+	</xsl:template>
+	<xsl:template match="project/dependencies/dependency/properties">
+		<ul>
+			<xsl:for-each select="node()">
+			   <xsl:if test="string(text())">
+				<li>
+					<strong>
+						<xsl:value-of select="local-name()"/>:</strong>
+					<p>
+						<xsl:value-of select="text()"/>
+					</p>
+				</li>
+						   </xsl:if>
+			</xsl:for-each>
+		</ul>
+	</xsl:template>
+</xsl:stylesheet>

Modified: incubator/muse/trunk/project.xml
Url: http://svn.apache.org/viewcvs/incubator/muse/trunk/project.xml?view=diff&rev=109381&p1=incubator/muse/trunk/project.xml&r1=109380&p2=incubator/muse/trunk/project.xml&r2=109381
==============================================================================
--- incubator/muse/trunk/project.xml	(original)
+++ incubator/muse/trunk/project.xml	Wed Dec  1 13:57:31 2004
@@ -1,400 +1,357 @@
 <?xml version="1.0"?>
-
 <!-- Muse Project Descriptor - defines Project Object Model (POM) -->
-
 <!-- Schema for this file is at:    http://maven.apache.org/xsd/maven-project-3.0.0.xsd -->
 <!-- Reference for this file is at: http://maven.apache.org/reference/project-descriptor.html -->
-
-<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:noNamespaceSchemaLocation="http://maven.apache.org/xsd/maven-project-3.0.0.xsd">
-
-  <pomVersion>3</pomVersion>
-  <id>muse</id>
-  <name>Muse</name>
-  <groupId>muse</groupId>
-  <currentVersion>0.5-beta1</currentVersion>
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>http://www.apache.org/</url>
-  </organization>
-  <inceptionYear>2004</inceptionYear>
-  <package>org.apache.ws</package>
-  <description>A robust Java implementation of the OASIS WSDM, Management using Web Services (MuWS) 0.5 specification and the underlying WS-* specifications it is based upon.</description>
-  <shortDescription>Muse Project</shortDescription>
-  <url>http://incubator.apache.org/muse/</url>
-  <issueTrackingUrl>http://nagoya.apache.org/jira/browse/Muse</issueTrackingUrl>
-
-  <repository>
-    <connection>scm|svn|http://svn.apache.org/repos/asf/incubator/muse/trunk/</connection>
-    <developerConnection>scm|svn|https://svn.apache.org/repos/asf/incubator/muse/trunk/</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/incubator/muse/trunk/</url>
-  </repository>
-
-  <versions>
-
-    <version>
-      <id>0.5-beta1</id>
-      <name>0.5-beta1</name>
-      <tag>HEAD</tag>
-    </version>
-
-  </versions>
-
-  <mailingLists>
-
-    <mailingList>
-      <name>Muse Developer List</name>
-      <subscribe>muse-dev-subscribe@ws.apache.org</subscribe>
-      <unsubscribe>muse-dev-unsubscribe@ws.apache.org</unsubscribe>
-      <archive>http://ws.apache.org/mail/muse-dev/</archive>
-    </mailingList>
-
-  </mailingLists>
-
-  <developers>
-
-    <developer>
-      <name>Sal Campana</name>
-      <id>scamp</id>
-      <email>sal_campana@hp.com</email>
-      <organization>Hewlett-Packard Company</organization>
-      <roles>
-        <role>Developer</role>
-      </roles>
-      <timezone>-5</timezone>
-    </developer>
-
-    <developer>
-      <name>Steve Forsyth</name>
-      <id>sfors</id>
-      <email>steve.forsyth@hp.com</email>
-      <organization>Hewlett-Packard Company</organization>
-      <roles>
-        <role>Developer</role>
-      </roles>
-      <timezone>-5</timezone>
-    </developer>
-
-    <developer>
-      <name>John Mazzitelli</name>
-      <id>mazz</id>
-      <email>mazz@hp.com</email>
-      <organization>Hewlett-Packard Company</organization>
-      <roles>
-        <role>Developer</role>
-      </roles>
-      <timezone>-5</timezone>
-    </developer>
-
-    <developer>
-      <name>Bill Reichardt</name>
-      <id>wire</id>
-      <email>william.reichardt@hp.com</email>
-      <organization>Hewlett-Packard Company</organization>
-      <roles>
-        <role>Developer</role>
-      </roles>
-      <timezone>-5</timezone>
-    </developer>
-
-    <developer>
-      <name>Ian Springer</name>
-      <id>ips</id>
-      <email>ian DOT springer AT hp DOT com</email>
-      <organization>Hewlett-Packard Company</organization>
-      <roles>
-        <role>Developer</role>
-      </roles>
-      <timezone>-5</timezone>
-    </developer>
-
-  </developers>
-
-  <dependencies>
-
-    <dependency>
-      <groupId>addressing</groupId>
-      <artifactId>addressing</artifactId>
-      <version>SNAPSHOT</version>
-      <url>http://ws.apache.org/ws-fx/addressing/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>ant</groupId>
-      <artifactId>ant</artifactId>
-      <version>1.6.2</version>
-      <url>http://ant.apache.org/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>axis</groupId>
-      <artifactId>axis</artifactId>
-      <version>1.2-RC2</version>
-      <url>http://ws.apache.org/axis/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>axis</groupId>
-      <artifactId>axis-jaxrpc</artifactId>
-      <version>1.2-RC2</version>
-      <url>http://ws.apache.org/axis/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>axis</groupId>
-      <artifactId>axis-saaj</artifactId>
-      <version>1.2-RC2</version>
-      <url>http://ws.apache.org/axis/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>axis</groupId>
-      <artifactId>axis-wsdl4j</artifactId>
-      <version>1.2-RC2</version>
-      <url>http://ws.apache.org/axis/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>commons-discovery</groupId>
-      <artifactId>commons-discovery</artifactId>
-      <version>0.2</version>
-      <url>http://jakarta.apache.org/commons/discovery/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <version>2.0.2</version>
-      <url>http://jakarta.apache.org/commons/httpclient/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>commons-lang</groupId>
-      <artifactId>commons-lang</artifactId>
-      <version>2.0</version>
-      <url>http://jakarta.apache.org/commons/lang/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-        <src.artifactId>commons-lang-src</src.artifactId>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>commons-logging</groupId>
-      <artifactId>commons-logging</artifactId>
-      <version>1.0.4</version>
-      <url>http://jakarta.apache.org/commons/logging/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>concurrent</groupId>
-      <artifactId>concurrent</artifactId>
-      <version>1.3.4</version>
-      <url>http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>muse</groupId>
-      <artifactId>disk-types</artifactId>
-      <version>SNAPSHOT</version>
-      <url>http://incubator.apache.org/muse/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>ws-fx</groupId>
-      <artifactId>wsdm-xmlbeans</artifactId>
-      <version>SNAPSHOT</version>
-      <url>http://ws.apache.org/ws-fx/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>ws-fx</groupId>
-      <artifactId>wsdm-axis-types</artifactId>
-      <version>1.2-RC2</version>
-      <url>http://ws.apache.org/ws-fx/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>jaxen</groupId>
-      <artifactId>jaxen</artifactId>
-      <version>1.1-beta-4</version>
-      <url>http://jaxen.org/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <url>http://www.junit.org/</url>
-      <properties>
-        <classloader>root</classloader>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
-      <version>1.2.8</version>
-      <url>http://logging.apache.org/log4j/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>servletapi</groupId>
-      <artifactId>servletapi</artifactId>
-      <version>2.3</version>
-      <url>http://java.sun.com/products/servlet/</url>
-      <properties>
-        <war.bundle>false</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>xalan</groupId>
-      <artifactId>xalan</artifactId>
-      <version>2.4.1</version>
-      <url>http://xml.apache.org/xalan-j/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
- 
-    <dependency>
-      <groupId>xmlbeans</groupId>
-      <artifactId>xbean</artifactId>
-      <version>v1HEAD-SNAPSHOT-20041129</version>
-      <url>http://xmlbeans.apache.org/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>xmlbeans</groupId>
-      <artifactId>xbean_xpath</artifactId>
-      <version>v1HEAD-SNAPSHOT-20041129</version>
-      <url>http://xmlbeans.apache.org/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>xml-resolver</groupId>
-      <artifactId>xml-resolver</artifactId>
-      <version>1.1</version>
-      <url>http://xml.apache.org/commons/components/resolver/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-  </dependencies>
-
-  <build>
-
-    <nagEmailAddress>muse-dev@ws.apache.org</nagEmailAddress>
-    <sourceDirectory>src/java</sourceDirectory>
-    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
-
-    <unitTest>
-      <includes>
-        <include>**/*TestCase.java</include>
-      </includes>
-      <excludes>
-        <exclude>**/Abstract*TestCase.java</exclude>
-      </excludes>
-    </unitTest>
-
-    <resources>
-
-      <resource>
-        <directory>${basedir}/src/java</directory>
-        <excludes>
-          <exclude>**/*.java</exclude>
-          <exclude>**/package.html</exclude>
-        </excludes>
-        <filtering>false</filtering>
-      </resource>
-
-      <resource>
-        <directory>${basedir}/src/test</directory>
-        <excludes>
-          <exclude>**/*.java</exclude>
-          <exclude>**/package.html</exclude>
-        </excludes>
-        <filtering>false</filtering>
-      </resource>
-
-      <resource>
-        <directory>${basedir}/src</directory>
-        <includes>
-          <include>wsdl/muse/**</include>
-        </includes>
-        <filtering>false</filtering>
-      </resource>
-
-    </resources>
-
-  </build>
-
-  <reports>
-    <!--<report>maven-checkstyle-plugin</report>-->
-    <!--<report>maven-changelog-plugin</report>-->
-    <!--<report>maven-developer-activity-plugin</report>-->
-    <!--<report>maven-file-activity-plugin</report>-->
-    <report>maven-javadoc-plugin</report>
-    <!--<report>maven-jdepend-plugin</report>-->
-    <report>maven-junit-report-plugin</report>
-    <!--<report>maven-jxr-plugin</report>-->
-    <!--<report>maven-simian-plugin</report>-->
-  </reports>
-
-  <properties />
-
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/xsd/maven-project-3.0.0.xsd">
+	<pomVersion>3</pomVersion>
+	<id>muse</id>
+	<name>Muse</name>
+	<groupId>muse</groupId>
+	<currentVersion>0.5-beta1</currentVersion>
+	<organization>
+		<name>Apache Software Foundation</name>
+		<url>http://www.apache.org/</url>
+	</organization>
+	<inceptionYear>2004</inceptionYear>
+	<package>org.apache.ws</package>
+	<description>A robust Java implementation of the OASIS WSDM, Management using Web Services (MuWS) 0.5 specification and the underlying WS-* specifications it is based upon.</description>
+	<shortDescription>Muse Project</shortDescription>
+	<url>http://incubator.apache.org/muse/</url>
+	<issueTrackingUrl>http://nagoya.apache.org/jira/browse/Muse</issueTrackingUrl>
+	<repository>
+		<connection>scm|svn|http://svn.apache.org/repos/asf/incubator/muse/trunk/</connection>
+		<developerConnection>scm|svn|https://svn.apache.org/repos/asf/incubator/muse/trunk/</developerConnection>
+		<url>http://svn.apache.org/viewcvs.cgi/incubator/muse/trunk/</url>
+	</repository>
+	<versions>
+		<version>
+			<id>0.5-beta1</id>
+			<name>0.5-beta1</name>
+			<tag>HEAD</tag>
+		</version>
+	</versions>
+	<mailingLists>
+		<mailingList>
+			<name>Muse Developer List</name>
+			<subscribe>muse-dev-subscribe@ws.apache.org</subscribe>
+			<unsubscribe>muse-dev-unsubscribe@ws.apache.org</unsubscribe>
+			<archive>http://ws.apache.org/mail/muse-dev/</archive>
+		</mailingList>
+	</mailingLists>
+	<developers>
+		<developer>
+			<name>Sal Campana</name>
+			<id>scamp</id>
+			<email>sal_campana@hp.com</email>
+			<organization>Hewlett-Packard Company</organization>
+			<roles>
+				<role>Developer</role>
+			</roles>
+			<timezone>-5</timezone>
+		</developer>
+		<developer>
+			<name>Steve Forsyth</name>
+			<id>sfors</id>
+			<email>steve.forsyth@hp.com</email>
+			<organization>Hewlett-Packard Company</organization>
+			<roles>
+				<role>Developer</role>
+			</roles>
+			<timezone>-5</timezone>
+		</developer>
+		<developer>
+			<name>John Mazzitelli</name>
+			<id>mazz</id>
+			<email>mazz@hp.com</email>
+			<organization>Hewlett-Packard Company</organization>
+			<roles>
+				<role>Developer</role>
+			</roles>
+			<timezone>-5</timezone>
+		</developer>
+		<developer>
+			<name>Bill Reichardt</name>
+			<id>wire</id>
+			<email>william.reichardt@hp.com</email>
+			<organization>Hewlett-Packard Company</organization>
+			<roles>
+				<role>Developer</role>
+			</roles>
+			<timezone>-5</timezone>
+		</developer>
+		<developer>
+			<name>Ian Springer</name>
+			<id>ips</id>
+			<email>ian DOT springer AT hp DOT com</email>
+			<organization>Hewlett-Packard Company</organization>
+			<roles>
+				<role>Developer</role>
+			</roles>
+			<timezone>-5</timezone>
+		</developer>
+	</developers>
+	<dependencies>
+		<dependency>
+			<groupId>addressing</groupId>
+			<artifactId>addressing</artifactId>
+			<version>SNAPSHOT</version>
+			<url>http://ws.apache.org/ws-fx/addressing/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for handling WS-Addressing.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>ant</groupId>
+			<artifactId>ant</artifactId>
+			<version>1.6.2</version>
+			<url>http://ant.apache.org/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for various custom Tasks we've defined for updating a Wsdd and running WsdmWsdl2Java.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>axis</groupId>
+			<artifactId>axis</artifactId>
+			<version>1.2-RC2</version>
+			<url>http://ws.apache.org/axis/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for compiling Axis-specific impls in our codebase.  It is also needed for unit tests, etc.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>axis</groupId>
+			<artifactId>axis-jaxrpc</artifactId>
+			<version>1.2-RC2</version>
+			<url>http://ws.apache.org/axis/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for building our Jax-RPC compliant Handler impl.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>axis</groupId>
+			<artifactId>axis-saaj</artifactId>
+			<version>1.2-RC2</version>
+			<url>http://ws.apache.org/axis/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for building our SOAP-specific code.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>axis</groupId>
+			<artifactId>axis-wsdl4j</artifactId>
+			<version>1.2-RC2</version>
+			<url>http://ws.apache.org/axis/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for working with WSDL files as objects.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>commons-discovery</groupId>
+			<artifactId>commons-discovery</artifactId>
+			<version>0.2</version>
+			<url>http://jakarta.apache.org/commons/discovery/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed by Axis.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>commons-httpclient</groupId>
+			<artifactId>commons-httpclient</artifactId>
+			<version>2.0.2</version>
+			<url>http://jakarta.apache.org/commons/httpclient/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for sending Http requests, i.e. Notifications.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>commons-lang</groupId>
+			<artifactId>commons-lang</artifactId>
+			<version>2.0</version>
+			<url>http://jakarta.apache.org/commons/lang/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<src.artifactId>commons-lang-src</src.artifactId>
+				<usage>Needed for utility operations like StringUtils, ExceptionUtils etc.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+			<version>1.0.4</version>
+			<url>http://jakarta.apache.org/commons/logging/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for logging purposes.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>concurrent</groupId>
+			<artifactId>concurrent</artifactId>
+			<version>1.3.4</version>
+			<url>http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for threading.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>muse</groupId>
+			<artifactId>disk-types</artifactId>
+			<version>SNAPSHOT</version>
+			<url>http://incubator.apache.org/muse/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for Unit Tests.  This "could" be eliminated and generated on the fly, but it would make the builds longer.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>ws-fx</groupId>
+			<artifactId>wsdm-xmlbeans</artifactId>
+			<version>SNAPSHOT</version>
+			<url>http://ws.apache.org/ws-fx/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for handling requests.  This contains the XmlBean-generated code from the spec wsdls.  This "could" be eliminated and generated on the fly, but it would make the builds longer.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>ws-fx</groupId>
+			<artifactId>wsdm-axis-types</artifactId>
+			<version>1.2-RC2</version>
+			<url>http://ws.apache.org/ws-fx/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for handling Axis requests.  This contains the Axis-generated code from the spec wsdls.  This "could" be eliminated and generated on the fly, but it would make the builds longer.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>jaxen</groupId>
+			<artifactId>jaxen</artifactId>
+			<version>1.1-beta-4</version>
+			<url>http://jaxen.org/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for handling XPath queries with XmlBeans.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>3.8.1</version>
+			<url>http://www.junit.org/</url>
+			<properties>
+				<classloader>root</classloader>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for running unit tests.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.8</version>
+			<url>http://logging.apache.org/log4j/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for logging.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>servletapi</groupId>
+			<artifactId>servletapi</artifactId>
+			<version>2.3</version>
+			<url>http://java.sun.com/products/servlet/</url>
+			<properties>
+				<war.bundle>false</war.bundle>
+				<usage>Needed to compile our servlet.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>xalan</groupId>
+			<artifactId>xalan</artifactId>
+			<version>2.4.1</version>
+			<url>http://xml.apache.org/xalan-j/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for XSL and report generation.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>xmlbeans</groupId>
+			<artifactId>xbean</artifactId>
+			<version>v1HEAD-SNAPSHOT-20041129</version>
+			<url>http://xmlbeans.apache.org/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for handling Xml Types in a platform agnostic way.</usage>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>xmlbeans</groupId>
+			<artifactId>xbean_xpath</artifactId>
+			<version>v1HEAD-SNAPSHOT-20041129</version>
+			<url>http://xmlbeans.apache.org/</url>
+			<properties>
+				<war.bundle>true</war.bundle>
+				<usage>Needed for XmlBeans.</usage>
+			</properties>
+		</dependency>		
+	</dependencies>
+	<build>
+		<nagEmailAddress>muse-dev@ws.apache.org</nagEmailAddress>
+		<sourceDirectory>src/java</sourceDirectory>
+		<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
+		<unitTest>
+			<includes>
+				<include>**/*TestCase.java</include>
+			</includes>
+			<excludes>
+				<exclude>**/Abstract*TestCase.java</exclude>
+			</excludes>
+		</unitTest>
+		<resources>
+			<resource>
+				<directory>${basedir}/src/java</directory>
+				<excludes>
+					<exclude>**/*.java</exclude>
+					<exclude>**/package.html</exclude>
+				</excludes>
+				<filtering>false</filtering>
+			</resource>
+			<resource>
+				<directory>${basedir}/src/test</directory>
+				<excludes>
+					<exclude>**/*.java</exclude>
+					<exclude>**/package.html</exclude>
+				</excludes>
+				<filtering>false</filtering>
+			</resource>
+			<resource>
+				<directory>${basedir}/src</directory>
+				<includes>
+					<include>wsdl/muse/**</include>
+				</includes>
+				<filtering>false</filtering>
+			</resource>
+		</resources>
+	</build>
+	<reports>
+		<!--<report>maven-checkstyle-plugin</report>-->
+		<!--<report>maven-changelog-plugin</report>-->
+		<!--<report>maven-developer-activity-plugin</report>-->
+		<!--<report>maven-file-activity-plugin</report>-->
+		<report>maven-javadoc-plugin</report>
+		<!--<report>maven-jdepend-plugin</report>-->
+		<report>maven-junit-report-plugin</report>
+		<!--<report>maven-jxr-plugin</report>-->
+		<!--<report>maven-simian-plugin</report>-->
+	</reports>
+	<properties/>
 </project>

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