Author: pidster
Date: Mon Jun 6 21:32:08 2011
New Revision: 1132786
URL: http://svn.apache.org/viewvc?rev=1132786&view=rev
Log:
fix code-quality plugin problems reported in KITTY-23
Added:
incubator/kitty/trunk/config/
incubator/kitty/trunk/config/checkstyle/
incubator/kitty/trunk/config/checkstyle/checkstyle.xml (with props)
incubator/kitty/trunk/config/codenarc/
incubator/kitty/trunk/config/codenarc/codenarc.xml (with props)
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java
(with props)
incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java
(with props)
Removed:
incubator/kitty/trunk/src/main/java/org/apache/kitty/Base.java
incubator/kitty/trunk/src/test/java/org/apache/kitty/test/TestShell.java
Modified:
incubator/kitty/trunk/ (props changed)
incubator/kitty/trunk/build.gradle
incubator/kitty/trunk/gradle/wrapper/gradle-wrapper.properties
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Constants.java
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Help.groovy
incubator/kitty/trunk/src/test/java/org/apache/kitty/test/Test.java
Propchange: incubator/kitty/trunk/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Jun 6 21:32:08 2011
@@ -7,3 +7,5 @@ build
.project
.classpath
+
+.settings
Modified: incubator/kitty/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/build.gradle?rev=1132786&r1=1132785&r2=1132786&view=diff
==============================================================================
--- incubator/kitty/trunk/build.gradle (original)
+++ incubator/kitty/trunk/build.gradle Mon Jun 6 21:32:08 2011
@@ -117,32 +117,14 @@ distZip {
// --------------------------------------------------------------------
// task definitions
-
-//task checkstyle(type: Checkstyle) << {
-// ignoreFailures = true
-//}
-//
-//task codeNarc(type: CodeNarc) << {
-// ignoreFailures = false
-// includes = "**/*.groovy"
-// source = 'src/main/java'
-//}
-
-
-task gradleWrapper(type: Wrapper, description: "Kitty Task: Create a Gradle
self-download wrapper") {
- gradleVersion = "$gradleVersion"
- jarPath = 'gradle/wrapper'
-}
-
-task kittyClean(dependsOn: [clean], description: "Kitty Task: Clean the build
directory") << {
-
+task checkstyle(type: Checkstyle) << {
+ source = 'src/main/java'
}
-task kittyDocs(dependsOn: [javadoc, groovydoc], description: "Kitty Task:
Build all documentation") << {
-
+task codeNarc(type: CodeNarc) << {
+ source = 'src/main/java'
}
-task kittyDist(dependsOn: [build, test, javadoc, groovydoc, distZip],
description: "Kitty Task: Build, test, check and document in preparation for a
release") << {
-
- println 'Built distribution... OK'
+task gradleWrapper(type: Wrapper, description: "Kitty Task: Create a Gradle
self-download wrapper") {
+ gradleVersion = "$gradleVersion"
}
Added: incubator/kitty/trunk/config/checkstyle/checkstyle.xml
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/config/checkstyle/checkstyle.xml?rev=1132786&view=auto
==============================================================================
--- incubator/kitty/trunk/config/checkstyle/checkstyle.xml (added)
+++ incubator/kitty/trunk/config/checkstyle/checkstyle.xml Mon Jun 6 21:32:08
2011
@@ -0,0 +1,205 @@
+<?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.
+-->
+<!DOCTYPE module PUBLIC
+ "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
+ "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
+
+<!--
+
+ Checkstyle configuration that checks the sun coding conventions from:
+
+ - the Java Language Specification at
+ http://java.sun.com/docs/books/jls/second_edition/html/index.html
+
+ - the Sun Code Conventions at http://java.sun.com/docs/codeconv/
+
+ - the Javadoc guidelines at
+ http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
+
+ - the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html
+
+ - some best practices
+
+ Checkstyle is very configurable. Be sure to read the documentation at
+ http://checkstyle.sf.net (or in your downloaded distribution).
+
+ Most Checks are configurable, be sure to consult the documentation.
+
+ To completely disable a check, just comment it out or delete it from the
file.
+
+ Finally, it is worth reading the documentation.
+
+-->
+
+<module name="Checker">
+ <!--
+ If you set the basedir property below, then all reported file
+ names will be relative to the specified directory. See
+ http://checkstyle.sourceforge.net/5.x/config.html#Checker
+
+ <property name="basedir" value="${basedir}"/>
+ -->
+
+ <!-- Checks that a package-info.java file exists for each package. -->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
+ <module name="JavadocPackage"/>
+
+ <!-- Checks whether files end with a new line. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
+ <module name="NewlineAtEndOfFile"/>
+
+ <!-- Checks that property files contain the same keys. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
+ <module name="Translation"/>
+
+ <!-- Checks for Size Violations. -->
+ <!-- See http://checkstyle.sf.net/config_sizes.html -->
+ <module name="FileLength"/>
+
+ <!-- Checks for whitespace -->
+ <!-- See http://checkstyle.sf.net/config_whitespace.html -->
+ <module name="FileTabCharacter"/>
+
+ <!-- Miscellaneous other checks. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html -->
+ <module name="RegexpSingleline">
+ <property name="format" value="\s+$"/>
+ <property name="minimum" value="0"/>
+ <property name="maximum" value="0"/>
+ <property name="message" value="Line has trailing spaces."/>
+ </module>
+
+ <module name="TreeWalker">
+
+ <!-- Checks for Javadoc comments. -->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html -->
+ <module name="JavadocMethod"/>
+ <module name="JavadocType"/>
+ <module name="JavadocVariable"/>
+ <module name="JavadocStyle"/>
+
+
+ <!-- Checks for Naming Conventions. -->
+ <!-- See http://checkstyle.sf.net/config_naming.html -->
+ <module name="ConstantName"/>
+ <module name="LocalFinalVariableName"/>
+ <module name="LocalVariableName"/>
+ <module name="MemberName"/>
+ <module name="MethodName"/>
+ <module name="PackageName"/>
+ <module name="ParameterName"/>
+ <module name="StaticVariableName"/>
+ <module name="TypeName"/>
+
+
+ <!-- Checks for Headers -->
+ <!-- See http://checkstyle.sf.net/config_header.html -->
+ <!-- <module name="Header"> -->
+ <!-- The follow property value demonstrates the ability -->
+ <!-- to have access to ANT properties. In this case it uses -->
+ <!-- the ${basedir} property to allow Checkstyle to be run -->
+ <!-- from any directory within a project. See property -->
+ <!-- expansion, -->
+ <!-- http://checkstyle.sf.net/config.html#properties -->
+ <!-- <property -->
+ <!-- name="headerFile" -->
+ <!-- value="${basedir}/java.header"/> -->
+ <!-- </module> -->
+
+ <!-- Following interprets the header file as regular expressions. -->
+ <!-- <module name="RegexpHeader"/> -->
+
+
+ <!-- Checks for imports -->
+ <!-- See http://checkstyle.sf.net/config_import.html -->
+ <module name="AvoidStarImport"/>
+ <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
+ <module name="RedundantImport"/>
+ <module name="UnusedImports"/>
+
+
+ <!-- Checks for Size Violations. -->
+ <!-- See http://checkstyle.sf.net/config_sizes.html -->
+ <module name="LineLength"/>
+ <module name="MethodLength"/>
+ <module name="ParameterNumber"/>
+
+
+ <!-- Checks for whitespace -->
+ <!-- See http://checkstyle.sf.net/config_whitespace.html -->
+ <module name="EmptyForIteratorPad"/>
+ <module name="GenericWhitespace"/>
+ <module name="MethodParamPad"/>
+ <module name="NoWhitespaceAfter"/>
+ <module name="NoWhitespaceBefore"/>
+ <module name="OperatorWrap"/>
+ <module name="ParenPad"/>
+ <module name="TypecastParenPad"/>
+ <module name="WhitespaceAfter"/>
+ <module name="WhitespaceAround"/>
+
+
+ <!-- Modifier Checks -->
+ <!-- See http://checkstyle.sf.net/config_modifiers.html -->
+ <module name="ModifierOrder"/>
+ <module name="RedundantModifier"/>
+
+
+ <!-- Checks for blocks. You know, those {}'s -->
+ <!-- See http://checkstyle.sf.net/config_blocks.html -->
+ <module name="AvoidNestedBlocks"/>
+ <module name="EmptyBlock"/>
+ <module name="LeftCurly"/>
+ <module name="NeedBraces"/>
+ <module name="RightCurly"/>
+
+
+ <!-- Checks for common coding problems -->
+ <!-- See http://checkstyle.sf.net/config_coding.html -->
+ <module name="AvoidInlineConditionals"/>
+ <module name="DoubleCheckedLocking"/> <!-- MY FAVOURITE -->
+ <module name="EmptyStatement"/>
+ <module name="EqualsHashCode"/>
+ <module name="HiddenField"/>
+ <module name="IllegalInstantiation"/>
+ <module name="InnerAssignment"/>
+ <module name="MagicNumber"/>
+ <module name="MissingSwitchDefault"/>
+ <module name="RedundantThrows"/>
+ <module name="SimplifyBooleanExpression"/>
+ <module name="SimplifyBooleanReturn"/>
+
+ <!-- Checks for class design -->
+ <!-- See http://checkstyle.sf.net/config_design.html -->
+ <module name="DesignForExtension"/>
+ <module name="FinalClass"/>
+ <module name="HideUtilityClassConstructor"/>
+ <module name="InterfaceIsType"/>
+ <module name="VisibilityModifier"/>
+
+
+ <!-- Miscellaneous other checks. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html -->
+ <module name="ArrayTypeStyle"/>
+ <module name="FinalParameters"/>
+ <module name="TodoComment"/>
+ <module name="UpperEll"/>
+
+ </module>
+
+</module>
\ No newline at end of file
Propchange: incubator/kitty/trunk/config/checkstyle/checkstyle.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/kitty/trunk/config/checkstyle/checkstyle.xml
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: incubator/kitty/trunk/config/codenarc/codenarc.xml
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/config/codenarc/codenarc.xml?rev=1132786&view=auto
==============================================================================
--- incubator/kitty/trunk/config/codenarc/codenarc.xml (added)
+++ incubator/kitty/trunk/config/codenarc/codenarc.xml Mon Jun 6 21:32:08 2011
@@ -0,0 +1,37 @@
+<!--
+ 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.
+-->
+<ruleset xmlns="http://codenarc.org/ruleset/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://codenarc.org/ruleset/1.0
http://codenarc.org/ruleset-schema.xsd"
+
xsi:noNamespaceSchemaLocation="http://codenarc.org/ruleset-schema.xsd">
+ <!--ruleset-ref path='rulesets/braces.xml'/-->
+ <ruleset-ref path='rulesets/imports.xml'/>
+ <ruleset-ref path='rulesets/naming.xml'>
+ <rule-config name='ClassName'>
+ <property name='regex' value='^[A-Z][a-zA-Z0-9]*$'/>
+ </rule-config>
+ <rule-config name='FieldName'>
+ <property name='finalRegex' value='^_?[a-z][a-zA-Z0-9]*$'/>
+ <property name='staticFinalRegex' value='^[A-Z][A-Z_0-9]*$'/>
+ </rule-config>
+ <rule-config name='MethodName'>
+ <property name='regex' value='^[a-z][a-zA-Z0-9_]*$'/>
+ </rule-config>
+ <rule-config name='VariableName'>
+ <property name='finalRegex' value='^_?[a-z][a-zA-Z0-9]*$'/>
+ </rule-config>
+ </ruleset-ref>
+</ruleset>
\ No newline at end of file
Propchange: incubator/kitty/trunk/config/codenarc/codenarc.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/kitty/trunk/config/codenarc/codenarc.xml
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified: incubator/kitty/trunk/gradle/wrapper/gradle-wrapper.properties
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/gradle/wrapper/gradle-wrapper.properties?rev=1132786&r1=1132785&r2=1132786&view=diff
==============================================================================
--- incubator/kitty/trunk/gradle/wrapper/gradle-wrapper.properties (original)
+++ incubator/kitty/trunk/gradle/wrapper/gradle-wrapper.properties Mon Jun 6
21:32:08 2011
@@ -1,4 +1,4 @@
-#Sat May 21 17:29:48 BST 2011
+#Mon Jun 06 21:11:55 BST 2011
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Modified:
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Constants.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Constants.java?rev=1132786&r1=1132785&r2=1132786&view=diff
==============================================================================
--- incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Constants.java
(original)
+++ incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Constants.java
Mon Jun 6 21:32:08 2011
@@ -1,37 +1,46 @@
/*
- * 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.
+*/
package org.apache.kitty.utils;
/**
- * <pre>
- * <b>Description</b>
- * <p>
- * Common constants used by the framework
- * </p>
- * </pre>
- *
+ * Common constants used by the framework.
+ *
* @version $Id$
*
*/
-public class Constants {
-
- public static final String ERROR_TOO_FEW_PARAMETERS = "You did not
enter all of the required parameters for this command";
- public static final String ERROR_NOT_CONNECTED = "Not currently
connected to a host";
+public final class Constants {
+
+ /**
+ * Too few params error message.
+ */
+ public static final String ERROR_TOO_FEW_PARAMETERS =
+ "You did not enter all of the required parameters for this command";
+
+ /**
+ * Not connected error msg.
+ */
+ public static final String ERROR_NOT_CONNECTED =
+ "Not currently connected to a host";
+
+ /**
+ *
+ */
+ private Constants() {
+ super();
+ }
}
Modified: incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Help.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Help.groovy?rev=1132786&r1=1132785&r2=1132786&view=diff
==============================================================================
--- incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Help.groovy
(original)
+++ incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/Help.groovy Mon
Jun 6 21:32:08 2011
@@ -1,21 +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.
+*/
package org.apache.kitty.utils
Added:
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java?rev=1132786&view=auto
==============================================================================
---
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java
(added)
+++
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java
Mon Jun 6 21:32:08 2011
@@ -0,0 +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.
+*/
+/**
+ * Util package.
+ */
+package org.apache.kitty.utils;
Propchange:
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java
------------------------------------------------------------------------------
svn:keywords = "Id Author Date Rev"
Propchange:
incubator/kitty/trunk/src/main/java/org/apache/kitty/utils/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified: incubator/kitty/trunk/src/test/java/org/apache/kitty/test/Test.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/test/java/org/apache/kitty/test/Test.java?rev=1132786&r1=1132785&r2=1132786&view=diff
==============================================================================
--- incubator/kitty/trunk/src/test/java/org/apache/kitty/test/Test.java
(original)
+++ incubator/kitty/trunk/src/test/java/org/apache/kitty/test/Test.java Mon Jun
6 21:32:08 2011
@@ -5,35 +5,20 @@
* 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.kitty.test;
-import javax.management.remote.JMXConnector;
-import javax.management.remote.JMXConnectorFactory;
-import javax.management.remote.JMXServiceURL;
-import javax.management.ObjectName;
-import javax.management.MBeanInfo;
-import javax.management.MBeanAttributeInfo;
-import javax.management.MBeanOperationInfo;
-import javax.management.MBeanParameterInfo;
-import java.lang.management.ManagementFactory;
-import javax.management.AttributeNotFoundException;
-
/**
- * <pre>
- * Test some simple concepts and assumptions here
- * </pre>
- *
+ * Test some simple concepts and assumptions here.
+ *
* @version $Id$
*
*/
Added:
incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java?rev=1132786&view=auto
==============================================================================
--- incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java
(added)
+++ incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java
Mon Jun 6 21:32:08 2011
@@ -0,0 +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.
+*/
+/**
+ * Test package.
+ */
+package org.apache.kitty.test;
Propchange:
incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java
------------------------------------------------------------------------------
svn:keywords = "Id Author Date Rev"
Propchange:
incubator/kitty/trunk/src/test/java/org/apache/kitty/test/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain