You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by xa...@apache.org on 2007/03/27 09:36:31 UTC

svn commit: r522842 [10/17] - in /incubator/ivy/core/trunk: ./ doc/ doc/doc/ doc/doc/configuration/ doc/doc/configuration/macrodef/ doc/doc/configuration/namespace/ doc/doc/ivyfile/ doc/doc/releasenotes/ doc/doc/resolver/ doc/doc/tutorial/ doc/doc/tuto...

Modified: incubator/ivy/core/trunk/ivysettings.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/ivysettings.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/ivysettings.xml (original)
+++ incubator/ivy/core/trunk/ivysettings.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivyconf>
 	<conf defaultResolver="public" />
 	<resolvers>
@@ -13,4 +31,4 @@
 			<artifact pattern="http://repo1.maven.org/maven/[module]/[type]s/[artifact]-[revision].[ext]"/>
 		</url>
 	</resolvers>
-</ivyconf>
\ No newline at end of file
+</ivyconf>

Modified: incubator/ivy/core/trunk/src/example/build-a-ivy-repository/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/build-a-ivy-repository/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/build-a-ivy-repository/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/build-a-ivy-repository/build.xml Tue Mar 27 02:36:03 2007
@@ -1,115 +1,133 @@
-<?xml version="1.0"?>
-<!-- ====================================================================== 
-     23 janv. 2006 13:36:06                                                        
-
-     ivy-repository
-     This is a sample project to build our own ivy repository from differents existing repositories.
-                   
-     mb                                                                
-     ====================================================================== -->
-<project name="ivy-repository" default="basic" xmlns:ivy="antlib:org.apache.ivy.ant">
-	<property name="configuration-dir" value="config"/>
-	<property name="from-resolver" value="libraries"/>
-	<property name="to-resolver" value="local-repository"/>
-	
-	<property name="ivy.cache.dir" value="${basedir}/cache" />
-	<property name="dest.repo.dir" value="${basedir}/ivy-local-repository" />
-
-    <!-- ================================= 
-          target: basic
-         ================================= -->
-    <target name="basic" depends="init-basic"
-    		description="--> retrieve files from well formatted ivy repositories">
-    	<ivy:install organisation="apache" module="commons-lang" revision="1.0" from="${from-resolver}" to="${to-resolver}" />
-    </target>
-
-    <!-- ================================= 
-          target: basic-deps
-         ================================= -->
-    <target name="basic-deps" depends="init-basic" 
-    		description="--> retrieve files from well formatted ivy repositories with dependencies">
-    	<ivy:install organisation="hibernate" module="hibernate" revision="2.1.8" from="${from-resolver}" to="${to-resolver}" transitive="true" />
-    </target>
-
-    <!-- ================================= 
-          target: commons-lang-1-0-ibiblio-no-namespace
-         ================================= -->
-    <target name="commons-lang-1-0-ibiblio-no-namespace" depends="init-advanced" 
-    		description="--> retrieve commons-lang 1.0 from ibiblio maven using no namespaces">
-    	<ivy:install organisation="commons-lang" module="commons-lang" revision="1.0" from="ibiblio-maven2-nonamespace" to="${to-resolver}" transitive="true" />
-    </target>
-
-    <!-- ================================= 
-          target: commons-lang-1-0-ibiblio-with-namespace
-         ================================= -->
-    <target name="commons-lang-1-0-ibiblio-with-namespace" depends="init-advanced" 
-    		description="--> retrieve commons-lang 1.0 from ibiblio maven using namespaces">
-    	<ivy:install organisation="apache" module="commons-lang" revision="1.0" from="ibiblio-maven2" to="${to-resolver}" transitive="true" />
-    </target>
-
-    <!-- ================================= 
-          target: advanced
-         ================================= -->
-    <target name="advanced" depends="init-advanced" 
-    		description="--> retrieve files from public repositories (ivyrep, ibiblio, ...) using namespaces">
-    	<ivy:install organisation="hibernate" module="hibernate" revision="3.0" from="${from-resolver}" to="${to-resolver}" transitive="true" />
-    </target>
-
-	<!-- ================================= 
-          target: maven1
-         ================================= -->
-    <target name="maven1" depends="init-maven1" 
-    		description="--> retrieve commons-lang 1.0 from maven1 repo using namespaces">
-    	<ivy:install organisation="apache" module="commons-lang" revision="1.0" from="ibiblio-maven" to="${to-resolver}" transitive="true" />
-    </target>
-
-    <!-- ================================= 
-          target: maven2
-         ================================= -->
-    <target name="maven2" depends="init-maven2" 
-    	description="--> retrieve files from maven2 repo using namespaces">
-    	<ivy:install organisation="hibernate" module="hibernate" revision="3.0" from="ibiblio-maven2" to="${to-resolver}" transitive="true" />
-    </target>
-
-   	<!-- - - - - - - - - - - - - - - - - - 
-          target: init-advanced
-         - - - - - - - - - - - - - - - - - -->
-    <target name="init-advanced">
-    	<ivy:configure file="${configuration-dir}/ivysettings-advanced.xml"/>
-    </target>
-	
-	<!-- - - - - - - - - - - - - - - - - - 
-          target: init-maven1
-         - - - - - - - - - - - - - - - - - -->
-    <target name="init-maven1">
-    	<ivy:configure file="${configuration-dir}/ivysettings-maven1.xml"/>
-    </target>
-
-	<!-- - - - - - - - - - - - - - - - - - 
-          target: init-maven2
-         - - - - - - - - - - - - - - - - - -->
-    <target name="init-maven2">
-    	<ivy:configure file="${configuration-dir}/ivysettings-maven2.xml"/>
-    </target>
-
-	<!-- - - - - - - - - - - - - - - - - - 
-          target: init-basic
-         - - - - - - - - - - - - - - - - - -->
-    <target name="init-basic">
-    	<ivy:configure file="${configuration-dir}/ivysettings-basic.xml"/>
-    </target>
-
-	<!-- ================================= 
-          target: clean-cache
-         ================================= -->
-    <target name="clean-cache" description="--> clean the cache">
-    	<delete dir="${ivy.cache.dir}" failonerror="true"  />
-    </target>
-
-	<!-- ================================= 
-          target: clean-repo
-         ================================= -->
-    <target name="clean-repo" description="--> clean the destination repository">
-    	<delete dir="${dest.repo.dir}" failonerror="true"  />
-    </target>
-</project>
+<?xml version="1.0"?>
+<!--
+   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.    
+-->
+<!-- ====================================================================== 
+     23 janv. 2006 13:36:06                                                        
+
+     ivy-repository
+     This is a sample project to build our own ivy repository from differents existing repositories.
+                   
+     mb                                                                
+     ====================================================================== -->
+<project name="ivy-repository" default="basic" xmlns:ivy="antlib:org.apache.ivy.ant">
+	<property name="configuration-dir" value="config"/>
+	<property name="from-resolver" value="libraries"/>
+	<property name="to-resolver" value="local-repository"/>
+	
+	<property name="ivy.cache.dir" value="${basedir}/cache" />
+	<property name="dest.repo.dir" value="${basedir}/ivy-local-repository" />
+
+    <!-- ================================= 
+          target: basic
+         ================================= -->
+    <target name="basic" depends="init-basic"
+    		description="--> retrieve files from well formatted ivy repositories">
+    	<ivy:install organisation="apache" module="commons-lang" revision="1.0" from="${from-resolver}" to="${to-resolver}" />
+    </target>
+
+    <!-- ================================= 
+          target: basic-deps
+         ================================= -->
+    <target name="basic-deps" depends="init-basic" 
+    		description="--> retrieve files from well formatted ivy repositories with dependencies">
+    	<ivy:install organisation="hibernate" module="hibernate" revision="2.1.8" from="${from-resolver}" to="${to-resolver}" transitive="true" />
+    </target>
+
+    <!-- ================================= 
+          target: commons-lang-1-0-ibiblio-no-namespace
+         ================================= -->
+    <target name="commons-lang-1-0-ibiblio-no-namespace" depends="init-advanced" 
+    		description="--> retrieve commons-lang 1.0 from ibiblio maven using no namespaces">
+    	<ivy:install organisation="commons-lang" module="commons-lang" revision="1.0" from="ibiblio-maven2-nonamespace" to="${to-resolver}" transitive="true" />
+    </target>
+
+    <!-- ================================= 
+          target: commons-lang-1-0-ibiblio-with-namespace
+         ================================= -->
+    <target name="commons-lang-1-0-ibiblio-with-namespace" depends="init-advanced" 
+    		description="--> retrieve commons-lang 1.0 from ibiblio maven using namespaces">
+    	<ivy:install organisation="apache" module="commons-lang" revision="1.0" from="ibiblio-maven2" to="${to-resolver}" transitive="true" />
+    </target>
+
+    <!-- ================================= 
+          target: advanced
+         ================================= -->
+    <target name="advanced" depends="init-advanced" 
+    		description="--> retrieve files from public repositories (ivyrep, ibiblio, ...) using namespaces">
+    	<ivy:install organisation="hibernate" module="hibernate" revision="3.0" from="${from-resolver}" to="${to-resolver}" transitive="true" />
+    </target>
+
+	<!-- ================================= 
+          target: maven1
+         ================================= -->
+    <target name="maven1" depends="init-maven1" 
+    		description="--> retrieve commons-lang 1.0 from maven1 repo using namespaces">
+    	<ivy:install organisation="apache" module="commons-lang" revision="1.0" from="ibiblio-maven" to="${to-resolver}" transitive="true" />
+    </target>
+
+    <!-- ================================= 
+          target: maven2
+         ================================= -->
+    <target name="maven2" depends="init-maven2" 
+    	description="--> retrieve files from maven2 repo using namespaces">
+    	<ivy:install organisation="hibernate" module="hibernate" revision="3.0" from="ibiblio-maven2" to="${to-resolver}" transitive="true" />
+    </target>
+
+   	<!-- - - - - - - - - - - - - - - - - - 
+          target: init-advanced
+         - - - - - - - - - - - - - - - - - -->
+    <target name="init-advanced">
+    	<ivy:configure file="${configuration-dir}/ivysettings-advanced.xml"/>
+    </target>
+	
+	<!-- - - - - - - - - - - - - - - - - - 
+          target: init-maven1
+         - - - - - - - - - - - - - - - - - -->
+    <target name="init-maven1">
+    	<ivy:configure file="${configuration-dir}/ivysettings-maven1.xml"/>
+    </target>
+
+	<!-- - - - - - - - - - - - - - - - - - 
+          target: init-maven2
+         - - - - - - - - - - - - - - - - - -->
+    <target name="init-maven2">
+    	<ivy:configure file="${configuration-dir}/ivysettings-maven2.xml"/>
+    </target>
+
+	<!-- - - - - - - - - - - - - - - - - - 
+          target: init-basic
+         - - - - - - - - - - - - - - - - - -->
+    <target name="init-basic">
+    	<ivy:configure file="${configuration-dir}/ivysettings-basic.xml"/>
+    </target>
+
+	<!-- ================================= 
+          target: clean-cache
+         ================================= -->
+    <target name="clean-cache" description="--> clean the cache">
+    	<delete dir="${ivy.cache.dir}" failonerror="true"  />
+    </target>
+
+	<!-- ================================= 
+          target: clean-repo
+         ================================= -->
+    <target name="clean-repo" description="--> clean the destination repository">
+    	<delete dir="${dest.repo.dir}" failonerror="true"  />
+    </target>
+</project>

Modified: incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven1-ivysettings.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven1-ivysettings.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven1-ivysettings.xml (original)
+++ incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven1-ivysettings.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<!-- you can override this property to use mirrors 
       http://mirrors.dotsrc.org/maven2
@@ -103,4 +121,4 @@
 		/>
 	</resolvers>
 </ivysettings>
-	
\ No newline at end of file
+	

Modified: incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven2-ivysettings.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven2-ivysettings.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven2-ivysettings.xml (original)
+++ incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivy-maven2-ivysettings.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<!-- you can override this property to use mirrors 
 	  http://mirrors.dotsrc.org/maven2

Modified: incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-advanced.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-advanced.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-advanced.xml (original)
+++ incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-advanced.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<settings   defaultCache="${ivy.cache.dir}"	
             defaultResolver="local-repository"

Modified: incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-basic.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-basic.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-basic.xml (original)
+++ incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-basic.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<settings	defaultCache="${ivy.cache.dir}"	
 			defaultResolver="libraries"

Modified: incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven1.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven1.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven1.xml (original)
+++ incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven1.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<settings	defaultCache="${ivy.cache.dir}"	
 			defaultResolver="local-repository"

Modified: incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven2.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven2.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven2.xml (original)
+++ incubator/ivy/core/trunk/src/example/build-a-ivy-repository/config/ivysettings-maven2.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<settings	defaultCache="${ivy.cache.dir}"	
 			defaultResolver="local-repository"

Modified: incubator/ivy/core/trunk/src/example/chained-resolvers/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/chained-resolvers/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/chained-resolvers/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/chained-resolvers/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project default="clean-all">
     
     <!-- ================================= 

Modified: incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="chainedresolvers-project" default="run" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="${basedir}/lib" />
@@ -65,4 +83,4 @@
 	<target name="clean-cache" description="--> clean the ivy cache">
 		<delete dir="${user.home}/.ivy-cache"/>
 	</target>
-</project>
\ No newline at end of file
+</project>

Modified: incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/chained-resolvers/chainedresolvers-project/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="chained-resolvers"/>
     <dependencies>

Modified: incubator/ivy/core/trunk/src/example/chained-resolvers/config/ivysettings.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/chained-resolvers/config/ivysettings.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/chained-resolvers/config/ivysettings.xml (original)
+++ incubator/ivy/core/trunk/src/example/chained-resolvers/config/ivysettings.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
   <settings defaultResolver="chain-example"/>
   <resolvers>

Modified: incubator/ivy/core/trunk/src/example/configurations/jdbc-example/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/configurations/jdbc-example/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/configurations/jdbc-example/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/configurations/jdbc-example/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="configurations" default="run.dev" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="lib" />

Modified: incubator/ivy/core/trunk/src/example/configurations/jdbc-example/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/configurations/jdbc-example/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/configurations/jdbc-example/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/configurations/jdbc-example/ivy.xml Tue Mar 27 02:36:03 2007
@@ -1,4 +1,22 @@
 <?xml-stylesheet type="text/xsl" href="http://www.ivyrep.org/ivy-doc.xsl"?>
+<!--
+   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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="configurations" >
     	<description>
@@ -23,4 +41,4 @@
         <!-- junit is only need in the test configuration-->        
         <dependency org="junit" name="junit" rev="3.8" conf="test->default"/> 
     </dependencies>
-</ivy-module>
\ No newline at end of file
+</ivy-module>

Modified: incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="filter-framework" default="publish" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="lib" />

Modified: incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/configurations/multi-projects/filter-framework/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="filter-framework"/>
     <configurations>

Modified: incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="myapp" default="run-cc" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="lib" />

Modified: incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/configurations/multi-projects/myapp/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="myapp"/>
     
@@ -10,4 +28,4 @@
     <dependencies>
         <dependency org="apache" name="filter-framework" rev="latest.integration" conf="build->api; noexternaljar->homemade-impl; withexternaljar->cc-impl"/>
     </dependencies>
-</ivy-module>
\ No newline at end of file
+</ivy-module>

Modified: incubator/ivy/core/trunk/src/example/dependence/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dependence/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dependence/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/dependence/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project default="clean">
     
     <!-- ================================= 
@@ -21,4 +39,4 @@
         <ant dir="depending" antfile="build.xml" inheritall="false" inheritrefs="false" />
     </target>
     
-</project>
\ No newline at end of file
+</project>

Modified: incubator/ivy/core/trunk/src/example/dependence/config/ivysettings.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dependence/config/ivysettings.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dependence/config/ivysettings.xml (original)
+++ incubator/ivy/core/trunk/src/example/dependence/config/ivysettings.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<properties file="${ivy.settings.dir}/ivysettings.properties"/>
 	<settings defaultCache="${ivy.settings.dir}/ivy-cache" defaultResolver="libraries"/>

Modified: incubator/ivy/core/trunk/src/example/dependence/depending/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dependence/depending/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dependence/depending/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/dependence/depending/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="depending" default="run" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="${basedir}/lib" />

Modified: incubator/ivy/core/trunk/src/example/dependence/depending/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dependence/depending/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dependence/depending/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/dependence/depending/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="depending"/>
     <dependencies>

Modified: incubator/ivy/core/trunk/src/example/dependence/standalone/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dependence/standalone/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dependence/standalone/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/dependence/standalone/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="standalone" default="run" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="${basedir}/lib" />
@@ -94,4 +112,4 @@
         	</fileset>
     	</delete>
     </target>
-</project>
\ No newline at end of file
+</project>

Modified: incubator/ivy/core/trunk/src/example/dependence/standalone/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dependence/standalone/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dependence/standalone/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/dependence/standalone/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="standalone"/>
     <dependencies>

Modified: incubator/ivy/core/trunk/src/example/dual/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dual/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dual/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/dual/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project default="clean-all">
     
     <!-- ================================= 

Modified: incubator/ivy/core/trunk/src/example/dual/config/ivysettings.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dual/config/ivysettings.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dual/config/ivysettings.xml (original)
+++ incubator/ivy/core/trunk/src/example/dual/config/ivysettings.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
   <settings defaultResolver="dual-example"/>
   <resolvers>

Modified: incubator/ivy/core/trunk/src/example/dual/project/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dual/project/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dual/project/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/dual/project/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="dual-ivy" default="run" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="${basedir}/lib" />

Modified: incubator/ivy/core/trunk/src/example/dual/project/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dual/project/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dual/project/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/dual/project/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="hello-ivy"/>
     <dependencies>

Modified: incubator/ivy/core/trunk/src/example/dual/repository/commons-httpclient-ivy-2.0.2.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/dual/repository/commons-httpclient-ivy-2.0.2.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/dual/repository/commons-httpclient-ivy-2.0.2.xml (original)
+++ incubator/ivy/core/trunk/src/example/dual/repository/commons-httpclient-ivy-2.0.2.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info 
         organisation="apache"

Modified: incubator/ivy/core/trunk/src/example/go-ivy/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/go-ivy/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/go-ivy/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/go-ivy/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="go-ivy" default="go" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- 
         this build file is a self contained project: it doesn't require anything else 

Modified: incubator/ivy/core/trunk/src/example/hello-ivy/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/hello-ivy/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/hello-ivy/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/hello-ivy/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="hello-ivy" default="run" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="lib" />

Modified: incubator/ivy/core/trunk/src/example/hello-ivy/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/hello-ivy/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/hello-ivy/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/hello-ivy/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="hello-ivy"/>
     <dependencies>

Modified: incubator/ivy/core/trunk/src/example/ivyrep/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/ivyrep/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/ivyrep/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/ivyrep/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="hello-ivy" default="run" xmlns:ivy="antlib:org.apache.ivy.ant">
     <!-- some variables used -->
     <property name="lib.dir" value="lib" />

Modified: incubator/ivy/core/trunk/src/example/ivyrep/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/ivyrep/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/ivyrep/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/ivyrep/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info organisation="apache" module="ivyrep-example"/>
     <dependencies>

Modified: incubator/ivy/core/trunk/src/example/multi-project/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="all" 
          xmlns:ivy="antlib:org.apache.ivy.ant">
          

Modified: incubator/ivy/core/trunk/src/example/multi-project/common/common.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/common/common.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/common/common.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/common/common.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="common" 
          xmlns:ivy="antlib:org.apache.ivy.ant">
 	<!-- a sample common build.xml file, used for ivy multi-project tutorial

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/console/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/console/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/console/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/console/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="console" default="compile">
 	<property file="build.properties"/>
 	

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/console/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/console/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/console/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/console/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info 
         organisation="apache"

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/find/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/find/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/find/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/find/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="find" default="compile">
 	<property file="build.properties"/>
 	

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/find/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/find/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/find/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/find/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info 
         organisation="apache"

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/list/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/list/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/list/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/list/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="list" default="compile">
 	<property file="build.properties"/>
 	

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/list/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/list/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/list/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/list/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info 
         organisation="apache"

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/size/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/size/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/size/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/size/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="size" default="compile">
 	<property file="build.properties"/>
 	

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/size/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/size/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/size/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/size/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info 
         organisation="apache"

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="sizewhere" default="compile">
 	<property file="build.properties"/>
 	

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/sizewhere/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info 
         organisation="apache"

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/version/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/version/build.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/version/build.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/version/build.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <project name="version" default="compile">
 	<property file="build.properties"/>
 	

Modified: incubator/ivy/core/trunk/src/example/multi-project/projects/version/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/example/multi-project/projects/version/ivy.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/example/multi-project/projects/version/ivy.xml (original)
+++ incubator/ivy/core/trunk/src/example/multi-project/projects/version/ivy.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivy-module version="1.0">
     <info 
         organisation="apache"

Modified: incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/antlib.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/antlib.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/antlib.xml (original)
+++ incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/antlib.xml Tue Mar 27 02:36:03 2007
@@ -1,4 +1,22 @@
 <?xml version="1.0"?>
+<!--
+   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.    
+-->
 <antlib xmlns:current="ant:current">
 	<taskdef name="configure" classname="org.apache.ivy.ant.IvyConfigure"/>
 	<taskdef name="resolve" classname="org.apache.ivy.ant.IvyResolve"/>

Modified: incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-default-chain.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-default-chain.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-default-chain.xml (original)
+++ incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-default-chain.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<resolvers>
 		<chain name="default" returnFirst="true">
@@ -5,4 +23,4 @@
 			<resolver ref="main"/>
 		</chain>
 	</resolvers>
-</ivysettings>
\ No newline at end of file
+</ivysettings>

Modified: incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-local.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-local.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-local.xml (original)
+++ incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-local.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<property name="ivy.local.default.root"             value="${ivy.default.ivy.user.dir}/local" override="false"/>
 	<property name="ivy.local.default.ivy.pattern"      value="[organisation]/[module]/[revision]/[type]s/[artifact].[ext]" override="false"/>
@@ -8,4 +26,4 @@
 			<artifact pattern="${ivy.local.default.root}/${ivy.local.default.artifact.pattern}" />
 		</filesystem>
 	</resolvers>
-</ivysettings>
\ No newline at end of file
+</ivysettings>

Modified: incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-main-chain.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-main-chain.xml?view=diff&rev=522842&r1=522841&r2=522842
==============================================================================
--- incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-main-chain.xml (original)
+++ incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/ivysettings-main-chain.xml Tue Mar 27 02:36:03 2007
@@ -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.    
+-->
 <ivysettings>
 	<resolvers>
 		<chain name="main" dual="true">
@@ -5,4 +23,4 @@
 			<resolver ref="public"/>
 		</chain>
 	</resolvers>
-</ivysettings>
\ No newline at end of file
+</ivysettings>