forked from code-troopers/android-betterpickers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style changes to pom and preparing for a hopeful release.
- Loading branch information
1 parent
aedb2f8
commit b348e6a
Showing
4 changed files
with
190 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE module PUBLIC | ||
"-//Puppy Crawl//DTD Check Configuration 1.2//EN" | ||
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | ||
|
||
<module name="Checker"> | ||
<!--module name="NewlineAtEndOfFile"/--> | ||
<module name="FileLength"/> | ||
<module name="FileTabCharacter"/> | ||
|
||
<!-- Trailing spaces --> | ||
<module name="RegexpSingleline"> | ||
<property name="format" value="\s+$"/> | ||
<property name="message" value="Line has trailing spaces."/> | ||
</module> | ||
|
||
<module name="TreeWalker"> | ||
<property name="cacheFile" value="${checkstyle.cache.file}"/> | ||
|
||
<!-- 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 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="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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<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"> | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
|
@@ -15,13 +17,33 @@ | |
<version>1.0.0-SNAPSHOT</version> | ||
|
||
<name>android-betterpickers (Parent)</name> | ||
<description>Android library for better Picker DialogFragments.</description> | ||
<description>Android library for better number/date/time-picker DialogFragments.</description> | ||
<inceptionYear>2011</inceptionYear> | ||
|
||
<modules> | ||
<module>library</module> | ||
<module>sample</module> | ||
</modules> | ||
|
||
<scm> | ||
<url>http://github.com/derekbrameyer/android-betterpickers/</url> | ||
<connection>scm:git:git://github.com/derekbrameyer/android-betterpickers.git</connection> | ||
<developerConnection>scm:git:[email protected]:derekbrameyer/android-betterpickers.git</developerConnection> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Derek Brameyer</name> | ||
<email>[email protected]</email> | ||
<id>derekbrameyer</id> | ||
<url>http://derekbrameyer.com</url> | ||
<timezone>-5</timezone> | ||
<roles> | ||
<role>developer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License Version 2.0</name> | ||
|
@@ -30,6 +52,16 @@ | |
</license> | ||
</licenses> | ||
|
||
<organization> | ||
<name>Derek Brameyer</name> | ||
<url>http://derekbrameyer.com</url> | ||
</organization> | ||
|
||
<issueManagement> | ||
<system>GitHub Issues</system> | ||
<url>https://github.com/derekbrameyer/android-betterpickers/issues</url> | ||
</issueManagement> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters