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 2006/08/24 21:27:52 UTC

svn commit: r434477 - in /ant/antlibs/dotnet/trunk/src: main/org/apache/ant/dotnet/ main/org/apache/ant/dotnet/build/ main/org/apache/ant/dotnet/compile/ main/org/apache/ant/dotnet/wix/ testcases/org/apache/ant/dotnet/ testcases/org/apache/ant/dotnet/b...

Author: bodewig
Date: Thu Aug 24 12:27:51 2006
New Revision: 434477

URL: http://svn.apache.org/viewvc?rev=434477&view=rev
Log:
Move a few files around

Added:
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/AbstractBuildTask.java
      - copied, changed from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/MSBuildTask.java
      - copied, changed from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/NAntTask.java
      - copied, changed from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/compile/
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/wix/
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/wix/WixTask.java
      - copied, changed from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java
    ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/
    ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/MSBuildTaskTest.java
      - copied, changed from r430109, ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java
    ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/NAntTaskTest.java
      - copied, changed from r430109, ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java
    ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/compile/
Removed:
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java
    ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java
    ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java
Modified:
    ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml

Modified: ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml
URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml?rev=434477&r1=434476&r2=434477&view=diff
==============================================================================
--- ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml (original)
+++ ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/antlib.xml Thu Aug 24 12:27:51 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!--
- Copyright 2003-2005 The Apache Software Foundation
+ Copyright 2003-2006 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.
@@ -21,15 +21,15 @@
     />
   <taskdef
     name="msbuild"
-    classname="org.apache.ant.dotnet.MSBuildTask"
+    classname="org.apache.ant.dotnet.build.MSBuildTask"
     />
   <taskdef
     name="nant"
-    classname="org.apache.ant.dotnet.NAntTask"
+    classname="org.apache.ant.dotnet.build.NAntTask"
     />
   <taskdef
     name="wix"
-    classname="org.apache.ant.dotnet.WixTask"
+    classname="org.apache.ant.dotnet.wix.WixTask"
     />
   <taskdef
     name="nunit"

Copied: ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/AbstractBuildTask.java (from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java)
URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/AbstractBuildTask.java?p2=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/AbstractBuildTask.java&p1=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java&r1=430109&r2=434477&rev=434477&view=diff
==============================================================================
--- ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/AbstractBuildTask.java (original)
+++ ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/AbstractBuildTask.java Thu Aug 24 12:27:51 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2005 The Apache Software Foundation
+ * Copyright 2003-2006 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,8 +15,9 @@
  *
  */
 
-package org.apache.ant.dotnet;
+package org.apache.ant.dotnet.build;
 
+import org.apache.ant.dotnet.DotNetExecTask;
 import org.apache.tools.ant.BuildException;
 import org.apache.tools.ant.Task;
 import org.apache.tools.ant.util.DOMElementWriter;

Copied: ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/MSBuildTask.java (from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java)
URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/MSBuildTask.java?p2=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/MSBuildTask.java&p1=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java&r1=430109&r2=434477&rev=434477&view=diff
==============================================================================
--- ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java (original)
+++ ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/MSBuildTask.java Thu Aug 24 12:27:51 2006
@@ -15,7 +15,7 @@
  *
  */
 
-package org.apache.ant.dotnet;
+package org.apache.ant.dotnet.build;
 
 import java.io.File;
 import java.util.Iterator;

Copied: ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/NAntTask.java (from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java)
URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/NAntTask.java?p2=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/NAntTask.java&p1=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java&r1=430109&r2=434477&rev=434477&view=diff
==============================================================================
--- ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/NAntTask.java (original)
+++ ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/build/NAntTask.java Thu Aug 24 12:27:51 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2005 The Apache Software Foundation
+ * Copyright 2003-2006 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.ant.dotnet;
+package org.apache.ant.dotnet.build;
 
 import java.io.File;
 import java.util.Iterator;

Copied: ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/wix/WixTask.java (from r430109, ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java)
URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/wix/WixTask.java?p2=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/wix/WixTask.java&p1=ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java&r1=430109&r2=434477&rev=434477&view=diff
==============================================================================
--- ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/WixTask.java (original)
+++ ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/wix/WixTask.java Thu Aug 24 12:27:51 2006
@@ -15,8 +15,10 @@
  *
  */
 
-package org.apache.ant.dotnet;
+package org.apache.ant.dotnet.wix;
 
+import org.apache.ant.dotnet.DotNetExecTask;
+import org.apache.ant.dotnet.build.AbstractBuildTask;
 import org.apache.tools.ant.BuildException;
 import org.apache.tools.ant.DirectoryScanner;
 import org.apache.tools.ant.Task;

Copied: ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/MSBuildTaskTest.java (from r430109, ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java)
URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/MSBuildTaskTest.java?p2=ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/MSBuildTaskTest.java&p1=ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java&r1=430109&r2=434477&rev=434477&view=diff
==============================================================================
--- ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/MSBuildTaskTest.java (original)
+++ ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/MSBuildTaskTest.java Thu Aug 24 12:27:51 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2005 The Apache Software Foundation
+ * Copyright 2003-2006 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.ant.dotnet;
+package org.apache.ant.dotnet.build;
 
 import org.apache.tools.ant.BuildFileTest;
 

Copied: ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/NAntTaskTest.java (from r430109, ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java)
URL: http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/NAntTaskTest.java?p2=ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/NAntTaskTest.java&p1=ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java&r1=430109&r2=434477&rev=434477&view=diff
==============================================================================
--- ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/NAntTaskTest.java (original)
+++ ant/antlibs/dotnet/trunk/src/testcases/org/apache/ant/dotnet/build/NAntTaskTest.java Thu Aug 24 12:27:51 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2005 The Apache Software Foundation
+ * Copyright 2003-2006 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.ant.dotnet;
+package org.apache.ant.dotnet.build;
 
 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