Author: jcarman
Date: Fri Jul 16 06:04:11 2010
New Revision: 964688

URL: http://svn.apache.org/viewvc?rev=964688&view=rev
Log:
Updating copyright.

Modified:
    commons/proper/proxy/branches/version-2.0-work/PROPOSAL.html
    commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml
    
commons/proper/proxy/branches/version-2.0-work/cglib/src/main/java/org/apache/commons/proxy/cglib/CglibProxyFactory.java
    
commons/proper/proxy/branches/version-2.0-work/cglib/src/test/java/org/apache/commons/proxy/cglib/TestCglibProxyFactory.java
    commons/proper/proxy/branches/version-2.0-work/checkstyle.xml
    commons/proper/proxy/branches/version-2.0-work/pom.xml
    commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml
    commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml
    
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/exception/package.html
    
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/factory/cglib/package.html
    commons/proper/proxy/branches/version-2.0-work/src/site/site.xml
    
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml
    commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml
    
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml
    
commons/proper/proxy/branches/version-2.0-work/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java
    
commons/proper/proxy/branches/version-2.0-work/src/test/resources/log4j.properties

Modified: commons/proper/proxy/branches/version-2.0-work/PROPOSAL.html
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/PROPOSAL.html?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/PROPOSAL.html (original)
+++ commons/proper/proxy/branches/version-2.0-work/PROPOSAL.html Fri Jul 16 
06:04:11 2010
@@ -6,7 +6,7 @@
   ~ (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,

Modified: commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml Fri Jul 16 
06:04:11 2010
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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 xmlns="http://maven.apache.org/POM/4.0.0";
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>

Modified: 
commons/proper/proxy/branches/version-2.0-work/cglib/src/main/java/org/apache/commons/proxy/cglib/CglibProxyFactory.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/cglib/src/main/java/org/apache/commons/proxy/cglib/CglibProxyFactory.java?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/cglib/src/main/java/org/apache/commons/proxy/cglib/CglibProxyFactory.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/cglib/src/main/java/org/apache/commons/proxy/cglib/CglibProxyFactory.java
 Fri Jul 16 06:04:11 2010
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.proxy.cglib;
 
 import net.sf.cglib.proxy.Callback;

Modified: 
commons/proper/proxy/branches/version-2.0-work/cglib/src/test/java/org/apache/commons/proxy/cglib/TestCglibProxyFactory.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/cglib/src/test/java/org/apache/commons/proxy/cglib/TestCglibProxyFactory.java?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/cglib/src/test/java/org/apache/commons/proxy/cglib/TestCglibProxyFactory.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/cglib/src/test/java/org/apache/commons/proxy/cglib/TestCglibProxyFactory.java
 Fri Jul 16 06:04:11 2010
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.proxy.cglib;
 
 import org.apache.commons.proxy.AbstractSubclassingProxyFactoryTestCase;

Modified: commons/proper/proxy/branches/version-2.0-work/checkstyle.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/checkstyle.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/checkstyle.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/checkstyle.xml Fri Jul 16 
06:04:11 2010
@@ -1,21 +1,19 @@
 <?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
+  ~ 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
+  ~      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.
   -->     
 <!DOCTYPE module PUBLIC
     "-//Puppy Crawl//DTD Check Configuration 1.1//EN"

Modified: commons/proper/proxy/branches/version-2.0-work/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/pom.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/pom.xml Fri Jul 16 06:04:11 
2010
@@ -1,21 +1,19 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-  ~ 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 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
+  ~      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.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>

Modified: commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml 
(original)
+++ commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml Fri Jul 
16 06:04:11 2010
@@ -1,19 +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.
--->
+  ~ 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.
+  -->
 <assembly>
     <id>bin</id>
     <formats>

Modified: commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml 
(original)
+++ commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml Fri Jul 
16 06:04:11 2010
@@ -1,19 +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.
--->
+  ~ 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.
+  -->
 <assembly>
     <id>src</id>
     <formats>

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/exception/package.html
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/exception/package.html?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/exception/package.html
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/exception/package.html
 Fri Jul 16 06:04:11 2010
@@ -14,6 +14,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <html>
 <body>
 <p>

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/factory/cglib/package.html
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/factory/cglib/package.html?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/factory/cglib/package.html
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/main/java/org/apache/commons/proxy/factory/cglib/package.html
 Fri Jul 16 06:04:11 2010
@@ -14,6 +14,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <html>
 <body>
 <p>

Modified: commons/proper/proxy/branches/version-2.0-work/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/site.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/site/site.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/src/site/site.xml Fri Jul 16 
06:04:11 2010
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
+
 <!--
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml 
(original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml 
Fri Jul 16 06:04:11 2010
@@ -1,20 +1,20 @@
 <?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.
--->
+  ~ 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.
+  -->
 <!--
  +======================================================================+
  |****                                                              ****|

Modified: commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml 
(original)
+++ commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml Fri 
Jul 16 06:04:11 2010
@@ -1,4 +1,5 @@
 <?xml version="1.0"?>
+
 <!--
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml 
(original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml 
Fri Jul 16 06:04:11 2010
@@ -1,20 +1,20 @@
 <?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.
--->
+  ~ 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.
+  -->
 <!--
  +======================================================================+
  |****                                                              ****|

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java
 Fri Jul 16 06:04:11 2010
@@ -1,3 +1,20 @@
+/*
+ * 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.commons.proxy.util;
 
 import junit.framework.TestCase;

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/test/resources/log4j.properties
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/test/resources/log4j.properties?rev=964688&r1=964687&r2=964688&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/test/resources/log4j.properties
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/test/resources/log4j.properties
 Fri Jul 16 06:04:11 2010
@@ -14,6 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
+
 log4j.rootLogger=DEBUG, console
 log4j.appender.console=org.apache.log4j.ConsoleAppender
 log4j.appender.console.layout=org.apache.log4j.PatternLayout


Reply via email to