You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/10/19 03:02:59 UTC

svn commit: r465433 - /incubator/activemq/activemq-dotnet/trunk/pom.xml

Author: chirino
Date: Wed Oct 18 18:02:57 2006
New Revision: 465433

URL: http://svn.apache.org/viewvc?view=rev&rev=465433
Log:
disable all the maven .net building stuff since it's not autodownloading properly for me.  Enable the antrun plugin so that the marshallers can be updated.

Modified:
    incubator/activemq/activemq-dotnet/trunk/pom.xml

Modified: incubator/activemq/activemq-dotnet/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-dotnet/trunk/pom.xml?view=diff&rev=465433&r1=465432&r2=465433
==============================================================================
--- incubator/activemq/activemq-dotnet/trunk/pom.xml (original)
+++ incubator/activemq/activemq-dotnet/trunk/pom.xml Wed Oct 18 18:02:57 2006
@@ -56,7 +56,6 @@
     <plugins>
 
       <!-- Used to generate the openwire commands and marshallers -->
-      <!--
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
@@ -74,9 +73,8 @@
           </dependency>
         </dependencies>
       </plugin>
-      -->
 
-      <!-- Manages the lifecycle of a dotnet project -->
+      <!--
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-csharp-lifecycle-plugin</artifactId>
@@ -84,7 +82,6 @@
         <extensions>true</extensions>
       </plugin>
 
-      <!-- Used to customize the dotnet compiler options -->
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <version>2.0</version>
@@ -96,7 +93,6 @@
 
           <compilerArguments>
             <doc>true</doc>
-            <!--  example of ignoring warnings -->
             <nowarn>1591</nowarn>
           </compilerArguments>
 
@@ -105,11 +101,8 @@
           </includes>
 
         </configuration>
-
-        <!--  executions need to be specified for the dotnet plugin (is slightly ugly, hopefully can get rid of in future -->
         <executions>
 
-          <!--  this configuration is required to tell the compiler what is different about the main compile as apposed to the test compile -->
           <execution>
             <id>compile</id>
             <phase>compile</phase>
@@ -119,12 +112,10 @@
             <configuration>
               <compilerArguments>
                 <target>library</target>
-                <!--  mainClass>MyNamespace.MyStaticMainClass</mainClass -->
               </compilerArguments>
             </configuration>
           </execution>
 
-          <!--  this configuration is required to tell the compiler what is different about the main compile as apposed to the test compile -->
           <execution>
             <id>testCompile</id>
             <phase>test-compile</phase>
@@ -133,9 +124,7 @@
             </goals>
             <configuration>
               <compilerArguments>
-                <!--  the library element is required for test compile -->
                 <target>library</target>
-                <!--  the isTest element is required for the test compile -->
                 <out>unit-tests.dll</out>
               </compilerArguments>
             </configuration>
@@ -151,7 +140,6 @@
         </dependencies>
       </plugin>
 
-      <!-- For Running NUNIT tests -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-nunit-plugin</artifactId>
@@ -172,6 +160,7 @@
           </includes>
         </configuration>
       </plugin>
+      -->
 
     </plugins>
   </build>
@@ -186,7 +175,7 @@
       <scope>system</scope>
       <systemPath>${dotnet.home}/System.dll</systemPath>
     </dependency -->
-
+    <!--
     <dependency>
       <groupId>nunit</groupId>
       <artifactId>nunit-framework</artifactId>
@@ -203,6 +192,7 @@
       <scope>system</scope>
       <systemPath>${dotnet.home}/nunit-console.exe</systemPath>
     </dependency>
+      -->
 
     <!--
     <dependency>