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 Daniel Jemiolo <da...@us.ibm.com> on 2006/06/20 21:10:39 UTC

Fw: svn commit: r415770 - in /webservices/muse/trunk/modules: muse-core/ muse-platform-axis2/ muse-util-qname/ muse-util-xml/ muse-util-xstream/ muse-util/ muse-wsa-soap/ muse-wsdm-muws-adv/ muse-wsdm-muws/ muse-wsdm-wef/ muse-wsn/ muse-wsrf/ muse-wsx/

As the commit message below states, we now have a complete build. As I 
convert more sample projects to Axis2, I will add them to /trunk/samples 
and create Maven builds for them. I hope to complete this in the next 
24-36 hours.

Dan


----- Forwarded by Daniel Jemiolo/Durham/IBM on 06/20/2006 03:04 PM -----

danj@apache.org wrote on 06/20/2006 03:03:18 PM:

> Author: danj
> Date: Tue Jun 20 12:03:17 2006
> New Revision: 415770
> 
> URL: http://svn.apache.org/viewvc?rev=415770&view=rev
> Log:
> All POMs have been updated to fix two issues:
> 
> 1. The .properties files with error/log messages are now included in 
> the .jar files.
> 
> 2. I have added a (commented-out) section of XML that will allow us 
> to disable the inclusion of Maven metadata files in our .jar files. 
> This disabling feature is not available in an official release until 
> Maven 2.1, and I don't want to use snapshots in our build process, so 
> for our initial release, I will probably just remove the metadata 
> files manually. When Maven 2.1 is released, I will upgrade and uncomment 

> the POM XML.
> 
> We now have a working build!
> 
> Modified:
>     webservices/muse/trunk/modules/muse-core/pom.xml
>     webservices/muse/trunk/modules/muse-platform-axis2/pom.xml
>     webservices/muse/trunk/modules/muse-util-qname/pom.xml
>     webservices/muse/trunk/modules/muse-util-xml/pom.xml
>     webservices/muse/trunk/modules/muse-util-xstream/pom.xml
>     webservices/muse/trunk/modules/muse-util/pom.xml
>     webservices/muse/trunk/modules/muse-wsa-soap/pom.xml
>     webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-api.xml
>     webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-impl.xml
>     webservices/muse/trunk/modules/muse-wsdm-muws/pom-api.xml
>     webservices/muse/trunk/modules/muse-wsdm-muws/pom-impl.xml
>     webservices/muse/trunk/modules/muse-wsdm-wef/pom-api.xml
>     webservices/muse/trunk/modules/muse-wsdm-wef/pom-impl.xml
>     webservices/muse/trunk/modules/muse-wsn/pom-api.xml
>     webservices/muse/trunk/modules/muse-wsn/pom-impl.xml
>     webservices/muse/trunk/modules/muse-wsrf/pom-api.xml
>     webservices/muse/trunk/modules/muse-wsrf/pom-impl.xml
>     webservices/muse/trunk/modules/muse-wsx/pom-api.xml
>     webservices/muse/trunk/modules/muse-wsx/pom-impl.xml
> 
> Modified: webservices/muse/trunk/modules/muse-core/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-
> core/pom.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-core/pom.xml (original)
> +++ webservices/muse/trunk/modules/muse-core/pom.xml Tue Jun 20 12:03:17 
2006
> @@ -45,5 +45,32 @@
>      <sourceDirectory>src</sourceDirectory>
>      <outputDirectory>build/classes</outputDirectory>
>      <directory>build/jars</directory>
> +    <resources>
> +      <resource>
> +        <directory>src</directory>
> +        <includes>
> +           <include>**/*.properties</include>
> +        </includes>
> +      </resource>
> +    </resources>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-platform-axis2/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-
> platform-axis2/pom.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-platform-axis2/pom.xml 
(original)
> +++ webservices/muse/trunk/modules/muse-platform-axis2/pom.xml Tue Jun 
20 12:03:17 2006
> @@ -18,12 +18,6 @@
>      </dependency>
>      <dependency>
>        <groupId>muse</groupId>
> -      <artifactId>muse-util</artifactId>
> -      <version>1.9.0-SNAPSHOT</version>
> -      <scope>compile</scope>
> -    </dependency>
> -    <dependency>
> -      <groupId>muse</groupId>
>        <artifactId>muse-util-xml</artifactId>
>        <version>1.9.0-SNAPSHOT</version>
>        <scope>compile</scope>
> @@ -57,5 +51,24 @@
>      <sourceDirectory>src</sourceDirectory>
>      <outputDirectory>build/classes</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-util-qname/pom.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-util-
> qname/pom.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-util-qname/pom.xml (original)
> +++ webservices/muse/trunk/modules/muse-util-qname/pom.xml Tue Jun 20 
12:03:17 2006
> @@ -13,5 +13,24 @@
>      <sourceDirectory>src</sourceDirectory>
>      <outputDirectory>build/classes</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-util-xml/pom.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-util-
> xml/pom.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-util-xml/pom.xml (original)
> +++ webservices/muse/trunk/modules/muse-util-xml/pom.xml Tue Jun 20 
12:03:17 2006
> @@ -27,5 +27,24 @@
>      <sourceDirectory>src</sourceDirectory>
>      <outputDirectory>build/classes</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-util-xstream/pom.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-util-
> xstream/pom.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-util-xstream/pom.xml (original)
> +++ webservices/muse/trunk/modules/muse-util-xstream/pom.xml Tue Jun 20 
12:03:17 2006
> @@ -45,5 +45,24 @@
>      <sourceDirectory>src</sourceDirectory>
>      <outputDirectory>build/classes</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-util/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-
> util/pom.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-util/pom.xml (original)
> +++ webservices/muse/trunk/modules/muse-util/pom.xml Tue Jun 20 12:03:17 
2006
> @@ -21,5 +21,32 @@
>      <sourceDirectory>src</sourceDirectory>
>      <outputDirectory>build/classes</outputDirectory>
>      <directory>build/jars</directory>
> +    <resources>
> +      <resource>
> +        <directory>src</directory>
> +        <includes>
> +           <include>**/*.properties</include>
> +        </includes>
> +      </resource>
> +    </resources>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsa-soap/pom.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsa-
> soap/pom.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsa-soap/pom.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsa-soap/pom.xml Tue Jun 20 
12:03:17 2006
> @@ -33,5 +33,32 @@
>      <sourceDirectory>src</sourceDirectory>
>      <outputDirectory>build/classes</outputDirectory>
>      <directory>build/jars</directory>
> +    <resources>
> +      <resource>
> +        <directory>src</directory>
> +        <includes>
> +           <include>**/*.properties</include>
> +        </includes>
> +      </resource>
> +    </resources>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-api.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsdm-
> muws-adv/pom-api.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-api.xml 
(original)
> +++ webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-api.xml Tue 
Jun 20 
> 12:03:17 2006
> @@ -45,5 +45,24 @@
>      <sourceDirectory>src-api</sourceDirectory>
>      <outputDirectory>build/classes-api</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-impl.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsdm-
> muws-adv/pom-impl.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-impl.xml 
(original)
> +++ webservices/muse/trunk/modules/muse-wsdm-muws-adv/pom-impl.xml Tue 
Jun 20 
> 12:03:17 2006
> @@ -93,5 +93,24 @@
>      <sourceDirectory>src-impl</sourceDirectory>
>      <outputDirectory>build/classes-impl</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsdm-muws/pom-api.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsdm-
> muws/pom-api.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsdm-muws/pom-api.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsdm-muws/pom-api.xml Tue Jun 20 
12:03:17 2006
> @@ -39,5 +39,24 @@
>      <sourceDirectory>src-api</sourceDirectory>
>      <outputDirectory>build/classes-api</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsdm-muws/pom-impl.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsdm-
> muws/pom-impl.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsdm-muws/pom-impl.xml 
(original)
> +++ webservices/muse/trunk/modules/muse-wsdm-muws/pom-impl.xml Tue Jun 
20 12:03:17 2006
> @@ -63,5 +63,32 @@
>      <sourceDirectory>src-impl</sourceDirectory>
>      <outputDirectory>build/classes-impl</outputDirectory>
>      <directory>build/jars</directory>
> +    <resources>
> +      <resource>
> +        <directory>src</directory>
> +        <includes>
> +           <include>**/*.properties</include>
> +        </includes>
> +      </resource>
> +    </resources>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsdm-wef/pom-api.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsdm-
> wef/pom-api.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsdm-wef/pom-api.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsdm-wef/pom-api.xml Tue Jun 20 
12:03:17 2006
> @@ -27,5 +27,24 @@
>      <sourceDirectory>src-api</sourceDirectory>
>      <outputDirectory>build/classes-api</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsdm-wef/pom-impl.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsdm-
> wef/pom-impl.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsdm-wef/pom-impl.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsdm-wef/pom-impl.xml Tue Jun 20 
12:03:17 2006
> @@ -39,5 +39,24 @@
>      <sourceDirectory>src-impl</sourceDirectory>
>      <outputDirectory>build/classes-impl</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsn/pom-api.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsn/pom-
> api.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsn/pom-api.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsn/pom-api.xml Tue Jun 20 
12:03:17 2006
> @@ -39,5 +39,24 @@
>      <sourceDirectory>src-api</sourceDirectory>
>      <outputDirectory>build/classes-api</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsn/pom-impl.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsn/pom-
> impl.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsn/pom-impl.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsn/pom-impl.xml Tue Jun 20 
12:03:17 2006
> @@ -63,5 +63,32 @@
>      <sourceDirectory>src-impl</sourceDirectory>
>      <outputDirectory>build/classes-impl</outputDirectory>
>      <directory>build/jars</directory>
> +    <resources>
> +      <resource>
> +        <directory>src</directory>
> +        <includes>
> +           <include>**/*.properties</include>
> +        </includes>
> +      </resource>
> +    </resources>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsrf/pom-api.xml
> URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-
> wsrf/pom-api.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsrf/pom-api.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsrf/pom-api.xml Tue Jun 20 
12:03:17 2006
> @@ -33,5 +33,24 @@
>      <sourceDirectory>src-api</sourceDirectory>
>      <outputDirectory>build/classes-api</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsrf/pom-impl.xml
> URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-
> wsrf/pom-impl.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsrf/pom-impl.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsrf/pom-impl.xml Tue Jun 20 
12:03:17 2006
> @@ -51,5 +51,32 @@
>      <sourceDirectory>src-impl</sourceDirectory>
>      <outputDirectory>build/classes-impl</outputDirectory>
>      <directory>build/jars</directory>
> +    <resources>
> +      <resource>
> +        <directory>src</directory>
> +        <includes>
> +           <include>**/*.properties</include>
> +        </includes>
> +      </resource>
> +    </resources>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsx/pom-api.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsx/pom-
> api.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsx/pom-api.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsx/pom-api.xml Tue Jun 20 
12:03:17 2006
> @@ -27,5 +27,24 @@
>      <sourceDirectory>src-api</sourceDirectory>
>      <outputDirectory>build/classes-api</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> Modified: webservices/muse/trunk/modules/muse-wsx/pom-impl.xml
> URL: 
http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsx/pom-
> impl.xml?rev=415770&r1=415769&r2=415770&view=diff
> 
==============================================================================
> --- webservices/muse/trunk/modules/muse-wsx/pom-impl.xml (original)
> +++ webservices/muse/trunk/modules/muse-wsx/pom-impl.xml Tue Jun 20 
12:03:17 2006
> @@ -39,5 +39,24 @@
>      <sourceDirectory>src-impl</sourceDirectory>
>      <outputDirectory>build/classes-impl</outputDirectory>
>      <directory>build/jars</directory>
> + 
> +    <!-- 
+ 
+        This feature can be used when Maven 2.1 is released 
> 
+ 
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.
> plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+ 
> <configuration>
+          <archive>
+ 
> <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+ 
> </configuration>
+      </plugin>
+    </plugins>
+ 
+    -->
> + 
>    </build>
>  </project>
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: muse-commits-unsubscribe@ws.apache.org
> For additional commands, e-mail: muse-commits-help@ws.apache.org
> 


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