You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nmaven-commits@incubator.apache.org by si...@apache.org on 2007/03/14 06:15:57 UTC

svn commit: r518035 - in /incubator/nmaven/branches/SI_IDE/plugins: README.txt maven-wsdl-plugin/src/main/java/org/apache/maven/dotnet/plugin/wsdl/WsdlGeneratorMojo.java pom.xml

Author: sisbell
Date: Tue Mar 13 23:15:56 2007
New Revision: 518035

URL: http://svn.apache.org/viewvc?view=rev&rev=518035
Log:
Minor plugin updates.

Modified:
    incubator/nmaven/branches/SI_IDE/plugins/README.txt
    incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/src/main/java/org/apache/maven/dotnet/plugin/wsdl/WsdlGeneratorMojo.java
    incubator/nmaven/branches/SI_IDE/plugins/pom.xml

Modified: incubator/nmaven/branches/SI_IDE/plugins/README.txt
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/README.txt?view=diff&rev=518035&r1=518034&r2=518035
==============================================================================
--- incubator/nmaven/branches/SI_IDE/plugins/README.txt (original)
+++ incubator/nmaven/branches/SI_IDE/plugins/README.txt Tue Mar 13 23:15:56 2007
@@ -1,4 +1,4 @@
-Find the latest documentation at: http://nmaven.sf.net. 
+Find the latest documentation at: http://incubator.apache.org/nmaven 
 
 Before building the nmaven-plugin project, build the nmaven-components project and then go to the scripts directory and
 execute the install script. It will install the nunit.framework.dll and other 3rd party libs into the local Maven repo.

Modified: incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/src/main/java/org/apache/maven/dotnet/plugin/wsdl/WsdlGeneratorMojo.java
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/src/main/java/org/apache/maven/dotnet/plugin/wsdl/WsdlGeneratorMojo.java?view=diff&rev=518035&r1=518034&r2=518035
==============================================================================
--- incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/src/main/java/org/apache/maven/dotnet/plugin/wsdl/WsdlGeneratorMojo.java (original)
+++ incubator/nmaven/branches/SI_IDE/plugins/maven-wsdl-plugin/src/main/java/org/apache/maven/dotnet/plugin/wsdl/WsdlGeneratorMojo.java Tue Mar 13 23:15:56 2007
@@ -176,7 +176,6 @@
 
         getLog().debug( "NMAVEN-1300-000: Commands = " + commands.toString() );
         CommandExecutor commandExecutor = CommandExecutor.Factory.createDefaultCommmandExecutor();
-        //commandExecutor.setLog(getLog());
         try
         {
             commandExecutor.executeCommand( getExecutableFor( vendor, netHome ), commands );
@@ -223,7 +222,7 @@
 
         for ( String path : paths )
         {
-            commands.add( commandFlag + "out:" + outputDirectory + File.separator + getFileNameFor( path ) );
+            commands.add( commandFlag + "out:" + outputDirectory + getFileNameFor( path ) );
         }
 
         for ( String path : paths )

Modified: incubator/nmaven/branches/SI_IDE/plugins/pom.xml
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/plugins/pom.xml?view=diff&rev=518035&r1=518034&r2=518035
==============================================================================
--- incubator/nmaven/branches/SI_IDE/plugins/pom.xml (original)
+++ incubator/nmaven/branches/SI_IDE/plugins/pom.xml Tue Mar 13 23:15:56 2007
@@ -6,22 +6,21 @@
   <packaging>pom</packaging>
   <version>0.14-SNAPSHOT</version>
   <name>maven-dotnet-plugins</name>
-
   <modules>
     <module>maven-compile-plugin</module>
+    <module>maven-install-plugin</module>
+    <module>maven-link-plugin</module>
+    <module>maven-resgen-plugin</module>
+    <module>maven-resolver-plugin</module>
+    <module>maven-settings-plugin</module>
+    <module>maven-solution-plugin</module>
     <module>maven-test-plugin</module>
+    <module>maven-vstudio-plugin</module>
     <module>maven-webapp-plugin</module>
     <module>maven-xsd-plugin</module>
     <module>maven-xsp-plugin</module>
     <module>maven-wsdl-plugin</module>
-    <module>maven-install-plugin</module>
-    <module>maven-resgen-plugin</module>
-    <module>maven-resolver-plugin</module>
-    <module>maven-settings-plugin</module>
-    <module>maven-solution-plugin</module>      
-    <module>maven-vstudio-plugin</module>    
   </modules>
-
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.dotnet</groupId>