Author: sisbell
Date: Fri Jan 25 08:49:59 2008
New Revision: 615266

URL: http://svn.apache.org/viewvc?rev=615266&view=rev
Log:
Added license info and updated site docs.

Modified:
    incubator/nmaven/trunk/README.txt
    
incubator/nmaven/trunk/components/maven-dotnet-assembler/src/main/resources/META-INF/plexus/components.xml
    
incubator/nmaven/trunk/components/maven-dotnet-compiler/src/main/resource/META-INF/plexus/components.xml
    
incubator/nmaven/trunk/components/maven-dotnet-core-it-runner/src/test/java/org/apache/maven/dotnet/its/Suite.java
    
incubator/nmaven/trunk/components/maven-dotnet-core/src/main/java/org/apache/maven/dotnet/ArtifactScope.java
    incubator/nmaven/trunk/site/general/pom.xml
    incubator/nmaven/trunk/site/general/src/site/apt/index.apt
    incubator/nmaven/trunk/site/versioned/pom.xml

Modified: incubator/nmaven/trunk/README.txt
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/README.txt?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- incubator/nmaven/trunk/README.txt (original)
+++ incubator/nmaven/trunk/README.txt Fri Jan 25 08:49:59 2008
@@ -3,4 +3,3 @@
 
 Prerequisites
 * csc.exe must be available on your PATH.  Usually it can be found in 
C:\WINDOWS\Microsoft.NET\Framework\[version]
-* NUnit must be installed or otherwise configured, see 
http://incubator.apache.org/nmaven/getting-started.html

Modified: 
incubator/nmaven/trunk/components/maven-dotnet-assembler/src/main/resources/META-INF/plexus/components.xml
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/maven-dotnet-assembler/src/main/resources/META-INF/plexus/components.xml?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- 
incubator/nmaven/trunk/components/maven-dotnet-assembler/src/main/resources/META-INF/plexus/components.xml
 (original)
+++ 
incubator/nmaven/trunk/components/maven-dotnet-assembler/src/main/resources/META-INF/plexus/components.xml
 Fri Jan 25 08:49:59 2008
@@ -1,8 +1,8 @@
 <component-set>
-    <components>
-        <component>
-            <role>org.apache.maven.dotnet.assembler.AssemblerContext</role>
-            
<implementation>org.apache.maven.dotnet.assembler.impl.AssemblerContextImpl</implementation>
-        </component>
-    </components>
+  <components>
+    <component>
+      <role>org.apache.maven.dotnet.assembler.AssemblerContext</role>
+      
<implementation>org.apache.maven.dotnet.assembler.impl.AssemblerContextImpl</implementation>
+    </component>
+  </components>
 </component-set>

Modified: 
incubator/nmaven/trunk/components/maven-dotnet-compiler/src/main/resource/META-INF/plexus/components.xml
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/maven-dotnet-compiler/src/main/resource/META-INF/plexus/components.xml?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- 
incubator/nmaven/trunk/components/maven-dotnet-compiler/src/main/resource/META-INF/plexus/components.xml
 (original)
+++ 
incubator/nmaven/trunk/components/maven-dotnet-compiler/src/main/resource/META-INF/plexus/components.xml
 Fri Jan 25 08:49:59 2008
@@ -1,8 +1,8 @@
 <component-set>
-    <components>
-        <component>
-            <role>org.apache.maven.dotnet.compiler.DotnetCompilerContext</role>
-            
<implementation>org.apache.maven.dotnet.compiler.impl.DotnetCompilerContextImpl</implementation>
-        </component>
-    </components>
+  <components>
+    <component>
+      <role>org.apache.maven.dotnet.compiler.DotnetCompilerContext</role>
+      
<implementation>org.apache.maven.dotnet.compiler.impl.DotnetCompilerContextImpl</implementation>
+    </component>
+  </components>
 </component-set>

Modified: 
incubator/nmaven/trunk/components/maven-dotnet-core-it-runner/src/test/java/org/apache/maven/dotnet/its/Suite.java
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/maven-dotnet-core-it-runner/src/test/java/org/apache/maven/dotnet/its/Suite.java?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- 
incubator/nmaven/trunk/components/maven-dotnet-core-it-runner/src/test/java/org/apache/maven/dotnet/its/Suite.java
 (original)
+++ 
incubator/nmaven/trunk/components/maven-dotnet-core-it-runner/src/test/java/org/apache/maven/dotnet/its/Suite.java
 Fri Jan 25 08:49:59 2008
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
 package org.apache.maven.dotnet.its;
 
 import org.apache.maven.dotnet.integrationtests.IntegrationTestSuite;

Modified: 
incubator/nmaven/trunk/components/maven-dotnet-core/src/main/java/org/apache/maven/dotnet/ArtifactScope.java
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/maven-dotnet-core/src/main/java/org/apache/maven/dotnet/ArtifactScope.java?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- 
incubator/nmaven/trunk/components/maven-dotnet-core/src/main/java/org/apache/maven/dotnet/ArtifactScope.java
 (original)
+++ 
incubator/nmaven/trunk/components/maven-dotnet-core/src/main/java/org/apache/maven/dotnet/ArtifactScope.java
 Fri Jan 25 08:49:59 2008
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
 package org.apache.maven.dotnet;
 
 public enum ArtifactScope

Modified: incubator/nmaven/trunk/site/general/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/site/general/pom.xml?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- incubator/nmaven/trunk/site/general/pom.xml (original)
+++ incubator/nmaven/trunk/site/general/pom.xml Fri Jan 25 08:49:59 2008
@@ -35,7 +35,7 @@
     <site>
       <id>nmaven-apache-site</id>
       <name>NMaven Site</name>
-      <url>file://${basedir}/../../www</url>
+      <url>file://${basedir}/../../../www</url>
     </site>
   </distributionManagement>
 </project>

Modified: incubator/nmaven/trunk/site/general/src/site/apt/index.apt
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/site/general/src/site/apt/index.apt?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- incubator/nmaven/trunk/site/general/src/site/apt/index.apt (original)
+++ incubator/nmaven/trunk/site/general/src/site/apt/index.apt Fri Jan 25 
08:49:59 2008
@@ -17,6 +17,6 @@
 
  Documentation can be found here:
 
- * {{{http://incubator.apache.org/nmaven/0.15} 0.15 (Current trunk)}}
+ * {{{0.15/index.html} 0.15 (Current trunk)}}
 
- * {{{http://incubator.apache.org/nmaven/0.14} 0.14 (Unreleased snapshot)}}
+ * {{{0.14/index.html} 0.14 (Unreleased snapshot)}}

Modified: incubator/nmaven/trunk/site/versioned/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/site/versioned/pom.xml?rev=615266&r1=615265&r2=615266&view=diff
==============================================================================
--- incubator/nmaven/trunk/site/versioned/pom.xml (original)
+++ incubator/nmaven/trunk/site/versioned/pom.xml Fri Jan 25 08:49:59 2008
@@ -35,7 +35,7 @@
     <site>
       <id>nmaven-apache-site</id>
       <name>NMaven Site</name>
-      <url>file://${basedir}/../../www/0.15</url>
+      <url>file://${basedir}/../../../www/0.15</url>
     </site>
   </distributionManagement>
 </project>


Reply via email to