Author: tn Date: Wed Feb 6 18:02:07 2013 New Revision: 1443098 URL: http://svn.apache.org/viewvc?rev=1443098&view=rev Log: migrate package.html to package-info.java.
Added: commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package-info.java - copied, changed from r1443020, commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package.html Removed: commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package.html Modified: commons/proper/cli/trunk/src/conf/checkstyle.xml Modified: commons/proper/cli/trunk/src/conf/checkstyle.xml URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/conf/checkstyle.xml?rev=1443098&r1=1443097&r2=1443098&view=diff ============================================================================== --- commons/proper/cli/trunk/src/conf/checkstyle.xml (original) +++ commons/proper/cli/trunk/src/conf/checkstyle.xml Wed Feb 6 18:02:07 2013 @@ -28,9 +28,7 @@ limitations under the License. <!-- Checks that a package.html file exists for each package. --> <!-- See http://checkstyle.sourceforge.net/config_javadoc.html#JavadocPackage --> - <module name="JavadocPackage"> - <property name="allowLegacy" value="true" /> - </module> + <module name="JavadocPackage"/> <!-- Checks whether files end with a new line. --> <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile --> Copied: commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package-info.java (from r1443020, commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package.html) URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package-info.java?p2=commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package-info.java&p1=commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package.html&r1=1443020&r2=1443098&rev=1443098&view=diff ============================================================================== --- commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package.html (original) +++ commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/package-info.java Wed Feb 6 18:02:07 2013 @@ -1,21 +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 +/** + * 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. + */ - 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. ---> -<body> - - Commons CLI 1.3 - -</body> +/** + * Commons CLI 1.3 + */ +package org.apache.commons.cli;