Author: bayard
Date: Tue Nov 28 20:34:14 2006
New Revision: 480398

URL: http://svn.apache.org/viewvc?view=rev&rev=480398
Log:
Fixed the copyright header

Modified:
    jakarta/commons/proper/launcher/trunk/NOTICE.txt
    jakarta/commons/proper/launcher/trunk/build.properties.sample
    jakarta/commons/proper/launcher/trunk/build.xml
    jakarta/commons/proper/launcher/trunk/checkstyle.xml
    jakarta/commons/proper/launcher/trunk/example/build.properties.sample
    jakarta/commons/proper/launcher/trunk/example/build.xml
    jakarta/commons/proper/launcher/trunk/example/src/bin/demo.bat
    jakarta/commons/proper/launcher/trunk/example/src/bin/demo.sh
    jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.properties
    jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.xml
    jakarta/commons/proper/launcher/trunk/example/src/etc/log4j.xml
    
jakarta/commons/proper/launcher/trunk/example/src/java/org/apache/launcher/example/Main.java
    jakarta/commons/proper/launcher/trunk/maven.xml
    jakarta/commons/proper/launcher/trunk/project.properties
    jakarta/commons/proper/launcher/trunk/project.xml
    jakarta/commons/proper/launcher/trunk/src/java/LauncherBootstrap.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ChildMain.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ExitOnErrorThreadGroup.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchCommand.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchFilter.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchTask.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/Launcher.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ParentListener.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/StreamConnector.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ArgumentSet.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgument.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgumentSet.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariable.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariableSet.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/JVMArgumentSet.java
    
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/SysPropertySet.java
    jakarta/commons/proper/launcher/trunk/xdocs/downloads.xml
    jakarta/commons/proper/launcher/trunk/xdocs/example.xml
    jakarta/commons/proper/launcher/trunk/xdocs/index.xml
    jakarta/commons/proper/launcher/trunk/xdocs/navigation.xml
    jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.1.xml
    jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.2.xml
    jakarta/commons/proper/launcher/trunk/xdocs/release-plan.xml

Modified: jakarta/commons/proper/launcher/trunk/NOTICE.txt
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/NOTICE.txt?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/NOTICE.txt (original)
+++ jakarta/commons/proper/launcher/trunk/NOTICE.txt Tue Nov 28 20:34:14 2006
@@ -1,2 +1,5 @@
+Apache Jakarta Commons Launcher
+Copyright 1999-2004 The Apache Software Foundation
+
 This product includes software developed by
 The Apache Software Foundation (http://www.apache.org/).

Modified: jakarta/commons/proper/launcher/trunk/build.properties.sample
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/build.properties.sample?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/build.properties.sample (original)
+++ jakarta/commons/proper/launcher/trunk/build.properties.sample Tue Nov 28 
20:34:14 2006
@@ -1,16 +1,17 @@
-#   Copyright 2003-2004 The Apache Software Foundation
+# 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
 #
-#   Licensed 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
 #
-#       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.
+# 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.
 
 # The directory containing your binary distribution of JUnit, 
 # version 3.7 or later

Modified: jakarta/commons/proper/launcher/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/build.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/build.xml (original)
+++ jakarta/commons/proper/launcher/trunk/build.xml Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/checkstyle.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/checkstyle.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/checkstyle.xml (original)
+++ jakarta/commons/proper/launcher/trunk/checkstyle.xml Tue Nov 28 20:34:14 
2006
@@ -3,11 +3,12 @@
     "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
     "http://www.puppycrawl.com/dtds/configuration_1_1.dtd";>
 <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/example/build.properties.sample
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/build.properties.sample?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/example/build.properties.sample 
(original)
+++ jakarta/commons/proper/launcher/trunk/example/build.properties.sample Tue 
Nov 28 20:34:14 2006
@@ -1,8 +1,9 @@
-# Copyright 2001-2004 The Apache Software Foundation.
-# 
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# 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
 # 

Modified: jakarta/commons/proper/launcher/trunk/example/build.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/build.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/example/build.xml (original)
+++ jakarta/commons/proper/launcher/trunk/example/build.xml Tue Nov 28 20:34:14 
2006
@@ -1,9 +1,10 @@
 <!--
-   Copyright 2003-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/example/src/bin/demo.bat
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/src/bin/demo.bat?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/example/src/bin/demo.bat (original)
+++ jakarta/commons/proper/launcher/trunk/example/src/bin/demo.bat Tue Nov 28 
20:34:14 2006
@@ -1,16 +1,17 @@
 @echo off
-REM   Copyright 2002-2004 The Apache Software Foundation
+REM Licensed to the Apache Software Foundation (ASF) under one or more
+REM contributor license agreements.  See the NOTICE file distributed with
+REM this work for additional information regarding copyright ownership.
+REM The ASF licenses this file to You under the Apache License, Version 2.0
+REM (the "License"); you may not use this file except in compliance with
+REM the License.  You may obtain a copy of the License at
 REM
-REM   Licensed under the Apache License, Version 2.0 (the "License");
-REM   you may not use this file except in compliance with the License.
-REM   You may obtain a copy of the License at
+REM      http://www.apache.org/licenses/LICENSE-2.0
 REM
-REM       http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM   Unless required by applicable law or agreed to in writing, software
-REM   distributed under the License is distributed on an "AS IS" BASIS,
-REM   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-REM   See the License for the specific language governing permissions and
-REM   limitations under the License.
+REM Unless required by applicable law or agreed to in writing, software
+REM distributed under the License is distributed on an "AS IS" BASIS,
+REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+REM See the License for the specific language governing permissions and
+REM limitations under the License.
 
 java -cp . LauncherBootstrap -executablename launcher-demo demo

Modified: jakarta/commons/proper/launcher/trunk/example/src/bin/demo.sh
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/src/bin/demo.sh?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/example/src/bin/demo.sh (original)
+++ jakarta/commons/proper/launcher/trunk/example/src/bin/demo.sh Tue Nov 28 
20:34:14 2006
@@ -1,16 +1,17 @@
 #!/bin/sh
-#   Copyright 2002-2004 The Apache Software Foundation
+# 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
 #
-#   Licensed 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
 #
-#       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.
+# 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.
 
 java -cp . LauncherBootstrap -executablename launcher-demo demo

Modified: 
jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.properties
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.properties?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.properties 
(original)
+++ jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.properties 
Tue Nov 28 20:34:14 2006
@@ -1,15 +1,16 @@
-#   Copyright 2002-2004 The Apache Software Foundation
+# 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
 #
-#   Licensed 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
 #
-#       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.
+# 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.
 
 
ant.class.path=../lib/launcher/ant.jar:../lib/launcher/ant-launcher.jar:../lib/launcher/xercesImpl.jar:../lib/launcher/xml-apis.jar

Modified: jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.xml 
(original)
+++ jakarta/commons/proper/launcher/trunk/example/src/bin/launcher.xml Tue Nov 
28 20:34:14 2006
@@ -1,9 +1,10 @@
 <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/example/src/etc/log4j.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/src/etc/log4j.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/example/src/etc/log4j.xml (original)
+++ jakarta/commons/proper/launcher/trunk/example/src/etc/log4j.xml Tue Nov 28 
20:34:14 2006
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
 <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: 
jakarta/commons/proper/launcher/trunk/example/src/java/org/apache/launcher/example/Main.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/example/src/java/org/apache/launcher/example/Main.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/example/src/java/org/apache/launcher/example/Main.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/example/src/java/org/apache/launcher/example/Main.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: jakarta/commons/proper/launcher/trunk/maven.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/maven.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/maven.xml (original)
+++ jakarta/commons/proper/launcher/trunk/maven.xml Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 <!--
-   Copyright 2001-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/project.properties
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/project.properties?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/project.properties (original)
+++ jakarta/commons/proper/launcher/trunk/project.properties Tue Nov 28 
20:34:14 2006
@@ -1,16 +1,17 @@
-#   Copyright 2002-2004 The Apache Software Foundation
+# 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
 #
-#   Licensed 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
 #
-#       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.
+# 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.
 
 maven.checkstyle.properties = checkstyle.xml
 

Modified: jakarta/commons/proper/launcher/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/project.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/project.xml (original)
+++ jakarta/commons/proper/launcher/trunk/project.xml Tue Nov 28 20:34:14 2006
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
- Copyright 2001-2004 The Apache Software Foundation.
- 
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
+ 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
  

Modified: jakarta/commons/proper/launcher/trunk/src/java/LauncherBootstrap.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/LauncherBootstrap.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/src/java/LauncherBootstrap.java 
(original)
+++ jakarta/commons/proper/launcher/trunk/src/java/LauncherBootstrap.java Tue 
Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ChildMain.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ChildMain.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ChildMain.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ChildMain.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ExitOnErrorThreadGroup.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ExitOnErrorThreadGroup.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ExitOnErrorThreadGroup.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ExitOnErrorThreadGroup.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchCommand.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchCommand.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchCommand.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchCommand.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchFilter.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchFilter.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchFilter.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchFilter.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchTask.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchTask.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchTask.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/LaunchTask.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/Launcher.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/Launcher.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/Launcher.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/Launcher.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ParentListener.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ParentListener.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ParentListener.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/ParentListener.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/StreamConnector.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/StreamConnector.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/StreamConnector.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/StreamConnector.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ArgumentSet.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ArgumentSet.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ArgumentSet.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ArgumentSet.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgument.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgument.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgument.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgument.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgumentSet.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgumentSet.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgumentSet.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalArgumentSet.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariable.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariable.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariable.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariable.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariableSet.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariableSet.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariableSet.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/ConditionalVariableSet.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/JVMArgumentSet.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/JVMArgumentSet.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/JVMArgumentSet.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/JVMArgumentSet.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/SysPropertySet.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/SysPropertySet.java?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/SysPropertySet.java
 (original)
+++ 
jakarta/commons/proper/launcher/trunk/src/java/org/apache/commons/launcher/types/SysPropertySet.java
 Tue Nov 28 20:34:14 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * 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
  * 

Modified: jakarta/commons/proper/launcher/trunk/xdocs/downloads.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/xdocs/downloads.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/xdocs/downloads.xml (original)
+++ jakarta/commons/proper/launcher/trunk/xdocs/downloads.xml Tue Nov 28 
20:34:14 2006
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
  <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/xdocs/example.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/xdocs/example.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/xdocs/example.xml (original)
+++ jakarta/commons/proper/launcher/trunk/xdocs/example.xml Tue Nov 28 20:34:14 
2006
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
  <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/xdocs/index.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/xdocs/index.xml (original)
+++ jakarta/commons/proper/launcher/trunk/xdocs/index.xml Tue Nov 28 20:34:14 
2006
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
  <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/xdocs/navigation.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/launcher/trunk/xdocs/navigation.xml Tue Nov 28 
20:34:14 2006
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
  <!--
-   Copyright 2002-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.1.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.1.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.1.xml (original)
+++ jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.1.xml Tue Nov 
28 20:34:14 2006
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
 <!--
-   Copyright 2003-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.2.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.2.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.2.xml (original)
+++ jakarta/commons/proper/launcher/trunk/xdocs/release-notes-1.2.xml Tue Nov 
28 20:34:14 2006
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
 <!--
-   Copyright 2003-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 

Modified: jakarta/commons/proper/launcher/trunk/xdocs/release-plan.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/launcher/trunk/xdocs/release-plan.xml?view=diff&rev=480398&r1=480397&r2=480398
==============================================================================
--- jakarta/commons/proper/launcher/trunk/xdocs/release-plan.xml (original)
+++ jakarta/commons/proper/launcher/trunk/xdocs/release-plan.xml Tue Nov 28 
20:34:14 2006
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
 <!--
-   Copyright 2003-2004 The Apache Software Foundation
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
+   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
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to