You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ol...@apache.org on 2012/04/06 17:22:13 UTC

svn commit: r1310402 - in /archiva/redback/redback-core/trunk/redback-data-management/src: main/java/org/codehaus/plexus/redback/management/ test/java/org/codehaus/plexus/redback/management/ test/resources/ test/resources/org/codehaus/plexus/redback/

Author: olamy
Date: Fri Apr  6 15:22:12 2012
New Revision: 1310402

URL: http://svn.apache.org/viewvc?rev=1310402&view=rev
Log:
license headers fix

Modified:
    archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/DataManagementTool.java
    archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/JdoDataManagementTool.java
    archiva/redback/redback-core/trunk/redback-data-management/src/test/java/org/codehaus/plexus/redback/management/DataManagementTest.java
    archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-keys.xml
    archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-rbac.xml
    archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-users.xml
    archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/org/codehaus/plexus/redback/config-defaults.properties

Modified: archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/DataManagementTool.java
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/DataManagementTool.java?rev=1310402&r1=1310401&r2=1310402&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/DataManagementTool.java (original)
+++ archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/DataManagementTool.java Fri Apr  6 15:22:12 2012
@@ -1,19 +1,22 @@
 package org.codehaus.plexus.redback.management;
 
 /*
- * Copyright 2006 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.
  */
 
 import org.codehaus.plexus.redback.keys.KeyManager;

Modified: archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/JdoDataManagementTool.java
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/JdoDataManagementTool.java?rev=1310402&r1=1310401&r2=1310402&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/JdoDataManagementTool.java (original)
+++ archiva/redback/redback-core/trunk/redback-data-management/src/main/java/org/codehaus/plexus/redback/management/JdoDataManagementTool.java Fri Apr  6 15:22:12 2012
@@ -1,19 +1,22 @@
 package org.codehaus.plexus.redback.management;
 
 /*
- * Copyright 2006 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.
  */
 
 import java.io.File;

Modified: archiva/redback/redback-core/trunk/redback-data-management/src/test/java/org/codehaus/plexus/redback/management/DataManagementTest.java
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-data-management/src/test/java/org/codehaus/plexus/redback/management/DataManagementTest.java?rev=1310402&r1=1310401&r2=1310402&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-data-management/src/test/java/org/codehaus/plexus/redback/management/DataManagementTest.java (original)
+++ archiva/redback/redback-core/trunk/redback-data-management/src/test/java/org/codehaus/plexus/redback/management/DataManagementTest.java Fri Apr  6 15:22:12 2012
@@ -1,19 +1,22 @@
 package org.codehaus.plexus.redback.management;
 
 /*
- * Copyright 2006
+ * 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.
  */
 
 import junit.framework.TestCase;

Modified: archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-keys.xml
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-keys.xml?rev=1310402&r1=1310401&r2=1310402&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-keys.xml (original)
+++ archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-keys.xml Fri Apr  6 15:22:12 2012
@@ -1,4 +1,23 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?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.
+  -->
 <authenticationKeyDatabase>
   <keys>
     <key>

Modified: archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-rbac.xml
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-rbac.xml?rev=1310402&r1=1310401&r2=1310402&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-rbac.xml (original)
+++ archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-rbac.xml Fri Apr  6 15:22:12 2012
@@ -1,4 +1,23 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?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.
+  -->
 <rbacDatabase>
   <roles>
     <role>

Modified: archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-users.xml
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-users.xml?rev=1310402&r1=1310401&r2=1310402&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-users.xml (original)
+++ archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/expected-users.xml Fri Apr  6 15:22:12 2012
@@ -1,4 +1,23 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?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.
+  -->
 <userDatabase>
   <users>
     <user>

Modified: archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/org/codehaus/plexus/redback/config-defaults.properties
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/org/codehaus/plexus/redback/config-defaults.properties?rev=1310402&r1=1310401&r2=1310402&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/org/codehaus/plexus/redback/config-defaults.properties (original)
+++ archiva/redback/redback-core/trunk/redback-data-management/src/test/resources/org/codehaus/plexus/redback/config-defaults.properties Fri Apr  6 15:22:12 2012
@@ -1,19 +1,22 @@
+# 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.
+
 jdbc.url=jdbc:derby:target/database;create=true
-#
-# Copyright 2006 The Codehaus.
-#
-# 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
-#
-# 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.
-#
+
 
 # --------------------------------------------------------------------
 # Application Configuration