Author: olamy
Date: Wed Apr 30 01:10:12 2014
New Revision: 1591165
URL: http://svn.apache.org/r1591165
Log:
start working on rat fixing
Added:
commons/proper/jcs/trunk/init-git-svn.sh (with props)
Removed:
commons/proper/jcs/trunk/tck.sh
Modified:
commons/proper/jcs/trunk/commons-jcs-core/pom.xml
commons/proper/jcs/trunk/commons-jcs-core/src/conf/cache.policy
commons/proper/jcs/trunk/pom.xml
Modified: commons/proper/jcs/trunk/commons-jcs-core/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/pom.xml?rev=1591165&r1=1591164&r2=1591165&view=diff
==============================================================================
--- commons/proper/jcs/trunk/commons-jcs-core/pom.xml (original)
+++ commons/proper/jcs/trunk/commons-jcs-core/pom.xml Wed Apr 30 01:10:12 2014
@@ -164,6 +164,15 @@
<artifactId>rmic-maven-plugin</artifactId>
<version>1.1</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes combine.children="append">
+ <exclude>src/aspect/org/apache/commons/Trace.aj</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
Modified: commons/proper/jcs/trunk/commons-jcs-core/src/conf/cache.policy
URL:
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/src/conf/cache.policy?rev=1591165&r1=1591164&r2=1591165&view=diff
==============================================================================
--- commons/proper/jcs/trunk/commons-jcs-core/src/conf/cache.policy (original)
+++ commons/proper/jcs/trunk/commons-jcs-core/src/conf/cache.policy Wed Apr 30
01:10:12 2014
@@ -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.
+
grant {
permission java.security.AllPermission;
};
Added: commons/proper/jcs/trunk/init-git-svn.sh
URL:
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/init-git-svn.sh?rev=1591165&view=auto
==============================================================================
--- commons/proper/jcs/trunk/init-git-svn.sh (added)
+++ commons/proper/jcs/trunk/init-git-svn.sh Wed Apr 30 01:10:12 2014
@@ -0,0 +1,21 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# !/bin/zsh -f
+cd .git;wget http://git.apache.org/authors.txt; cd ..
+git config svn.authorsfile ".git/authors.txt"
+git svn init --prefix=origin/ --tags=tags --trunk=trunk --branches=branches
https://svn.apache.org/repos/asf/commons/proper/jcs
+git svn rebase
Propchange: commons/proper/jcs/trunk/init-git-svn.sh
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/jcs/trunk/init-git-svn.sh
------------------------------------------------------------------------------
svn:executable = *
Propchange: commons/proper/jcs/trunk/init-git-svn.sh
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Modified: commons/proper/jcs/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/pom.xml?rev=1591165&r1=1591164&r2=1591165&view=diff
==============================================================================
--- commons/proper/jcs/trunk/pom.xml (original)
+++ commons/proper/jcs/trunk/pom.xml Wed Apr 30 01:10:12 2014
@@ -180,6 +180,24 @@
</contributor>
</contributors>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes combine.children="append">
+ <exclude>.java-version</exclude>
+ <exclude>LICENSE.xerox</exclude>
+ <exclude>src/scripts/zipcodes.txt</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
<dependencyManagement>
<dependencies>