You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2005/05/02 11:34:42 UTC

svn commit: r165613 - in /ant/sandbox/antlibs/dotnet/trunk: docs/ src/etc/testcases/ src/main/org/apache/ant/ src/main/org/apache/ant/dotnet/ src/main/org/apache/tools/ant/taskdefs/optional/dotnet/ src/testcases/org/apache/ant/ src/testcases/org/apache/ant/dotnet/ src/testcases/org/apache/tools/ant/taskdefs/optional/dotnet/

Author: bodewig
Date: Mon May  2 02:34:39 2005
New Revision: 165613

URL: http://svn.apache.org/viewcvs?rev=165613&view=rev
Log:
Rename package

Added:
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/
      - copied from r165612, ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/
    ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/
    ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/
      - copied from r165612, ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/tools/ant/taskdefs/optional/dotnet/
Removed:
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/
    ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/tools/ant/taskdefs/optional/dotnet/
Modified:
    ant/sandbox/antlibs/dotnet/trunk/docs/index.html
    ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/dotnetexec.xml
    ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/msbuild.xml
    ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nant.xml
    ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nunit.xml
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/DotNetExecTask.java
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NUnitTask.java
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java
    ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml
    ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/DotNetExecTaskTest.java
    ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java
    ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java
    ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NUnitTaskTest.java

Modified: ant/sandbox/antlibs/dotnet/trunk/docs/index.html
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/docs/index.html?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/docs/index.html (original)
+++ ant/sandbox/antlibs/dotnet/trunk/docs/index.html Mon May  2 02:34:39 2005
@@ -21,12 +21,12 @@
     <h2>Where is it?</h2>
 
     <p>The source code for the library currently lives in the
-    developer sandbox in Ant's CVS - <a
-    href="http://cvs.apache.org/viewcvs.cgi/ant/proposal/sandbox/dotnet/">http://cvs.apache.org/viewcvs.cgi/ant/proposal/sandbox/dotnet/</a>.
+    developer sandbox in Ant's SVN - <a
+    href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/dotnet/trunk/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/dotnet/trunk/</a>
     A binary can be found at <a
-    href="http://cvs.apache.org/~bodewig/dotnet/dotnet.jar">http://cvs.apache.org/~bodewig/dotnet/dotnet.jar</a>.
+    href="http://people.apache.org/~bodewig/dotnet/dotnet.jar">http://cvs.apache.org/~bodewig/dotnet/dotnet.jar</a>.
     A zip file containing the docs is also <a
-    href="http://cvs.apache.org/~bodewig/dotnet/docs.zip">available</a>.</p>
+    href="http://people.apache.org/~bodewig/dotnet/docs.zip">available</a>.</p>
 
     <p>Note that these are temporary locations and may change later.</p>
 
@@ -49,7 +49,7 @@
       <li>The traditional way:
         <pre>
           &lt;taskdef 
-            resource="org/apache/tools/ant/taskdefs/optional/dotnet/antlib.xml"&gt;
+            resource="org/apache/ant/dotnet/antlib.xml"&gt;
             &lt;classpath&gt;
               &lt;pathelement location="YOUR-PATH-TO/dotnet.jar"/&gt;
             &lt;/classpath&gt;
@@ -65,8 +65,8 @@
       <li>Similar, but assigning a namespace URI
         <pre>
           &lt;taskdef 
-            uri="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
-            resource="org/apache/tools/ant/taskdefs/optional/dotnet/antlib.xml"&gt;
+            uri="antlib:org.apache.ant.dotnet"
+            resource="org/apache/ant/dotnet/antlib.xml"&gt;
             &lt;classpath&gt;
               &lt;pathelement location="YOUR-PATH-TO/dotnet.jar"/&gt;
             &lt;/classpath&gt;
@@ -78,7 +78,7 @@
 
         <pre>
           &lt;project
-            xmlns:dn="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+            xmlns:dn="antlib:org.apache.ant.dotnet"
             xmlns="antlib:org.apache.tools.ant"&gt;
             ...
             &lt;dn:nant&gt;
@@ -89,7 +89,7 @@
         or
 
         <pre>
-          &lt;nant xmlns="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"&gt;
+          &lt;nant xmlns="antlib:org.apache.ant.dotnet"&gt;
             &lt;target name="my-target"/&gt;
           &lt;/nant&gt;
         </pre>
@@ -105,7 +105,7 @@
 
         <pre>
           &lt;project
-            xmlns:dn="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+            xmlns:dn="antlib:org.apache.ant.dotnet"
             xmlns="antlib:org.apache.tools.ant"&gt;
         </pre>
 
@@ -137,6 +137,6 @@
     </ul>
 
     <hr/>
-      <p align="center">Copyright &copy; 2003-2004 The Apache Software Foundation. All rights Reserved.</p>
+      <p align="center">Copyright &copy; 2003-2005 The Apache Software Foundation. All rights Reserved.</p>
   </body>
 </html>

Modified: ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/dotnetexec.xml
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/dotnetexec.xml?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/dotnetexec.xml (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/dotnetexec.xml Mon May  2 02:34:39 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!--
- Copyright  2003-2004 The Apache Software Foundation
+ Copyright 2003-2005 The Apache Software Foundation
 
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@
 -->
 
 <project name="dotnet" basedir="." default="testCSC"
-  xmlns:dn="antlib:org.apache.tools.ant.taskdefs.optional.dotnet">
+  xmlns:dn="antlib:org.apache.ant.dotnet">
 
   <property environment="env"/>
   <property name="build.dir" location="build"/>
@@ -25,14 +25,6 @@
   <property name="out.csc" location="${src.dir}/out.cs"/>
   <property name="out.app" location="${build.dir}/out.exe"/>
   <property name="out.type" value="exe"/>
-
-  <taskdef 
-    uri="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
-    resource="org/apache/tools/ant/taskdefs/optional/dotnet/antlib.xml">
-    <classpath>
-      <pathelement location="../../../build/lib/dotnet.jar"/>
-    </classpath>
-  </taskdef>
 
   <target name="probe_for_apps" >
    <condition property="csc.found">

Modified: ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/msbuild.xml
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/msbuild.xml?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/msbuild.xml (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/msbuild.xml Mon May  2 02:34:39 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!--
- Copyright  2003-2004 The Apache Software Foundation
+ Copyright 2003-2005 The Apache Software Foundation
 
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
@@ -15,15 +15,7 @@
   limitations under the License.
 -->
 <project name="msbuild" basedir="." default="echo"
-  xmlns:dn="antlib:org.apache.tools.ant.taskdefs.optional.dotnet">
-
-  <taskdef 
-    uri="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
-    resource="org/apache/tools/ant/taskdefs/optional/dotnet/antlib.xml">
-    <classpath>
-      <pathelement location="../../../build/lib/dotnet.jar"/>
-    </classpath>
-  </taskdef>
+  xmlns:dn="antlib:org.apache.ant.dotnet">
 
   <property environment="env"/>
   <condition property="msbuild.found">
@@ -37,7 +29,7 @@
   <target name="echo">
     <msbuild 
       buildfile="src/msbuild.proj" 
-      xmlns="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+      xmlns="antlib:org.apache.ant.dotnet"
       >
       <target name="echo"/>
       <property name="foo" value="bar"/>
@@ -47,7 +39,7 @@
   <target name="nested-file">
     <property name="foo" value="bar"/>
     <msbuild 
-      xmlns="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+      xmlns="antlib:org.apache.ant.dotnet"
       >
       <build>
         <Project DefaultTargets="echo">
@@ -62,7 +54,7 @@
   <target name="nested-task">
     <property name="foo" value="bar"/>
     <msbuild 
-      xmlns="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+      xmlns="antlib:org.apache.ant.dotnet"
       >
       <build>
         <Task Name="Echo" Message="foo is ${foo}"/>

Modified: ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nant.xml
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nant.xml?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nant.xml (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nant.xml Mon May  2 02:34:39 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!--
- Copyright  2003-2004 The Apache Software Foundation
+ Copyright 2003-2005 The Apache Software Foundation
 
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
@@ -15,15 +15,7 @@
   limitations under the License.
 -->
 <project name="nant" basedir="." default="echo"
-  xmlns:dn="antlib:org.apache.tools.ant.taskdefs.optional.dotnet">
-
-  <taskdef 
-    uri="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
-    resource="org/apache/tools/ant/taskdefs/optional/dotnet/antlib.xml">
-    <classpath>
-      <pathelement location="../../../build/lib/dotnet.jar"/>
-    </classpath>
-  </taskdef>
+  xmlns:dn="antlib:org.apache.ant.dotnet">
 
   <property environment="env"/>
   <condition property="nant.found">
@@ -37,7 +29,7 @@
   <target name="echo">
     <nant 
       buildfile="src/nant.build" 
-      xmlns="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+      xmlns="antlib:org.apache.ant.dotnet"
       >
       <target name="echo"/>
       <property name="foo" value="bar"/>
@@ -47,7 +39,7 @@
   <target name="nested-file">
     <property name="foo" value="bar"/>
     <nant
-      xmlns="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+      xmlns="antlib:org.apache.ant.dotnet"
       >
       <build>
         <project basedir="." default="echo">
@@ -62,7 +54,7 @@
   <target name="nested-task">
     <property name="foo" value="bar"/>
     <nant
-      xmlns="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
+      xmlns="antlib:org.apache.ant.dotnet"
       >
       <build>
         <echo message="foo is ${foo}"/>

Modified: ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nunit.xml
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nunit.xml?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nunit.xml (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/etc/testcases/nunit.xml Mon May  2 02:34:39 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!--
- Copyright  2004 The Apache Software Foundation
+ Copyright 2004-2005 The Apache Software Foundation
 
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
@@ -15,18 +15,10 @@
   limitations under the License.
 -->
 <project name="nunit" basedir="." default="echo"
-  xmlns:dn="antlib:org.apache.tools.ant.taskdefs.optional.dotnet">
+  xmlns:dn="antlib:org.apache.ant.dotnet">
 
   <property name="build.dir" value="build"/>
   <property name="src.dir" location="src"/>
-
-  <taskdef 
-    uri="antlib:org.apache.tools.ant.taskdefs.optional.dotnet"
-    resource="org/apache/tools/ant/taskdefs/optional/dotnet/antlib.xml">
-    <classpath>
-      <pathelement location="../../../build/lib/dotnet.jar"/>
-    </classpath>
-  </taskdef>
 
   <property environment="env"/>
   <condition property="nunit.found">

Modified: ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
  *
  */
 
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildException;
 import org.apache.tools.ant.Task;

Modified: ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/DotNetExecTask.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/DotNetExecTask.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/DotNetExecTask.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/DotNetExecTask.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
  *
  */
 
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildException;
 import org.apache.tools.ant.Task;

Modified: ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
  *
  */
 
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import java.io.File;
 import java.util.Iterator;

Modified: ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
  *
  */
 
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import java.io.File;
 import java.util.Iterator;

Modified: ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NUnitTask.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NUnitTask.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NUnitTask.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NUnitTask.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2004 The Apache Software Foundation
+ * Copyright 2004-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
  *
  */
 
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildException;
 import org.apache.tools.ant.Task;

Modified: ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2004 The Apache Software Foundation
+ * Copyright 2004-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
  *
  */
 
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildException;
 import org.apache.tools.ant.DirectoryScanner;

Modified: ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml Mon May  2 02:34:39 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!--
- Copyright  2003-2004 The Apache Software Foundation
+ Copyright 2003-2005 The Apache Software Foundation
 
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
@@ -17,22 +17,22 @@
 <antlib>
   <taskdef
     name="dotnetexec"
-    classname="org.apache.tools.ant.taskdefs.optional.dotnet.DotNetExecTask"
+    classname="org.apache.ant.dotnet.DotNetExecTask"
     />
   <taskdef
     name="msbuild"
-    classname="org.apache.tools.ant.taskdefs.optional.dotnet.MSBuildTask"
+    classname="org.apache.ant.dotnet.MSBuildTask"
     />
   <taskdef
     name="nant"
-    classname="org.apache.tools.ant.taskdefs.optional.dotnet.NAntTask"
+    classname="org.apache.ant.dotnet.NAntTask"
     />
   <taskdef
     name="wix"
-    classname="org.apache.tools.ant.taskdefs.optional.dotnet.WixTask"
+    classname="org.apache.ant.dotnet.WixTask"
     />
   <taskdef
     name="nunit"
-    classname="org.apache.tools.ant.taskdefs.optional.dotnet.NUnitTask"
+    classname="org.apache.ant.dotnet.NUnitTask"
     />
 </antlib>

Modified: ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/DotNetExecTaskTest.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/DotNetExecTaskTest.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/DotNetExecTaskTest.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/DotNetExecTaskTest.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
  *  limitations under the License.
  *
  */
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildFileTest;
 

Modified: ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
  *  limitations under the License.
  *
  */
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildFileTest;
 

Modified: ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
  *  limitations under the License.
  *
  */
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildFileTest;
 

Modified: ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NUnitTaskTest.java
URL: http://svn.apache.org/viewcvs/ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NUnitTaskTest.java?rev=165613&r1=165612&r2=165613&view=diff
==============================================================================
--- ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NUnitTaskTest.java (original)
+++ ant/sandbox/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NUnitTaskTest.java Mon May  2 02:34:39 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  2004 The Apache Software Foundation
+ * Copyright 2004-2005 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
  *  limitations under the License.
  *
  */
-package org.apache.tools.ant.taskdefs.optional.dotnet;
+package org.apache.ant.dotnet;
 
 import org.apache.tools.ant.BuildFileTest;
 



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