You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cr...@apache.org on 2008/03/20 07:31:12 UTC

svn commit: r639173 - in /cocoon/trunk/tools: cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/ cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/ cocoon-maven-docs-cleaner-plugin/src/main/java/org/apache/cocoon/maven/docscleaner/ coco...

Author: crossley
Date: Wed Mar 19 23:31:11 2008
New Revision: 639173

URL: http://svn.apache.org/viewvc?rev=639173&view=rev
Log:
Add missing Apache License header.

Modified:
    cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyContainer.java
    cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStarterMojo.java
    cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStopperMojo.java
    cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HtmlUnitTestCase.java
    cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HttpClientResponse.java
    cocoon/trunk/tools/cocoon-maven-docs-cleaner-plugin/src/main/java/org/apache/cocoon/maven/docscleaner/DocsCleanerMojo.java
    cocoon/trunk/tools/cocoon-maven-javadocs-script-report/src/main/java/org/apache/cocoon/maven/javadocs/report/JavadocsScriptGeneratorReport.java

Modified: cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyContainer.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyContainer.java?rev=639173&r1=639172&r2=639173&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyContainer.java (original)
+++ cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyContainer.java Wed Mar 19 23:31:11 2008
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
 package org.apache.cocoon.maven.test.jetty;
 
 import org.mortbay.jetty.Connector;

Modified: cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStarterMojo.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStarterMojo.java?rev=639173&r1=639172&r2=639173&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStarterMojo.java (original)
+++ cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStarterMojo.java Wed Mar 19 23:31:11 2008
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
 package org.apache.cocoon.maven.test.jetty;
 
 import java.io.File;

Modified: cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStopperMojo.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStopperMojo.java?rev=639173&r1=639172&r2=639173&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStopperMojo.java (original)
+++ cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/maven/test/jetty/JettyStopperMojo.java Wed Mar 19 23:31:11 2008
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
 package org.apache.cocoon.maven.test.jetty;
 
 import org.apache.maven.plugin.AbstractMojo;

Modified: cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HtmlUnitTestCase.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HtmlUnitTestCase.java?rev=639173&r1=639172&r2=639173&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HtmlUnitTestCase.java (original)
+++ cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HtmlUnitTestCase.java Wed Mar 19 23:31:11 2008
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
 package org.apache.cocoon.tools.it;
 
 import java.net.URL;

Modified: cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HttpClientResponse.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HttpClientResponse.java?rev=639173&r1=639172&r2=639173&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HttpClientResponse.java (original)
+++ cocoon/trunk/tools/cocoon-it-fw/src/main/java/org/apache/cocoon/tools/it/HttpClientResponse.java Wed Mar 19 23:31:11 2008
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
 package org.apache.cocoon.tools.it;
 
 import com.gargoylesoftware.htmlunit.SubmitMethod;

Modified: cocoon/trunk/tools/cocoon-maven-docs-cleaner-plugin/src/main/java/org/apache/cocoon/maven/docscleaner/DocsCleanerMojo.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-maven-docs-cleaner-plugin/src/main/java/org/apache/cocoon/maven/docscleaner/DocsCleanerMojo.java?rev=639173&r1=639172&r2=639173&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-maven-docs-cleaner-plugin/src/main/java/org/apache/cocoon/maven/docscleaner/DocsCleanerMojo.java (original)
+++ cocoon/trunk/tools/cocoon-maven-docs-cleaner-plugin/src/main/java/org/apache/cocoon/maven/docscleaner/DocsCleanerMojo.java Wed Mar 19 23:31:11 2008
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
 package org.apache.cocoon.maven.docscleaner;
 
 import java.io.File;

Modified: cocoon/trunk/tools/cocoon-maven-javadocs-script-report/src/main/java/org/apache/cocoon/maven/javadocs/report/JavadocsScriptGeneratorReport.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-maven-javadocs-script-report/src/main/java/org/apache/cocoon/maven/javadocs/report/JavadocsScriptGeneratorReport.java?rev=639173&r1=639172&r2=639173&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-maven-javadocs-script-report/src/main/java/org/apache/cocoon/maven/javadocs/report/JavadocsScriptGeneratorReport.java (original)
+++ cocoon/trunk/tools/cocoon-maven-javadocs-script-report/src/main/java/org/apache/cocoon/maven/javadocs/report/JavadocsScriptGeneratorReport.java Wed Mar 19 23:31:11 2008
@@ -1,3 +1,19 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
 package org.apache.cocoon.maven.javadocs.report;
 
 import java.io.File;