Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
add rat and checkstyle plugin (#34)
* modify poms * dubbo-samples-annotation:change groupId and package to org.apache.dubbo * dubbo-samples-api:change groupId and package to org.apache.dubbo * dubbo-samples-async:change groupId and package to org.apache.dubbo * dubbo-samples-async-consumer-future:change groupId and package to org.apache.dubbo * dubbo-samples-async-original-future:change groupId and package to org.apache.dubbo * dubbo-samples-async-provider:change groupId and package to org.apache.dubbo * dubbo-samples-attachment:change groupId and package to org.apache.dubbo * dubbo-samples-basic:change groupId and package to org.apache.dubbo * dubbo-samples-basic:change groupId and package to org.apache.dubbo * dubbo-samples-callback:change groupId and package to org.apache.dubbo * dubbo-samples-compatible:change groupId and package to org.apache.dubbo * dubbo-samples-context:change groupId and package to org.apache.dubbo * dubbo-samples-direct:change groupId and package to org.apache.dubbo * dubbo-samples-docker:change groupId and package to org.apache.dubbo * dubbo-samples-echo:change groupId and package to org.apache.dubbo * dubbo-samples-generic:change groupId and package to org.apache.dubbo * dubbo-samples-group:change groupId and package to org.apache.dubbo * dubbo-samples-http:change groupId and package to org.apache.dubbo * dubbo-samples-merge:change groupId and package to org.apache.dubbo * dubbo-samples-mock:change groupId and package to org.apache.dubbo * dubbo-samples-notify:change groupId and package to org.apache.dubbo * dubbo-samples-spring-hystrix:change groupId and package to org.apache.dubbo * dubbo-samples-stub:change groupId and package to org.apache.dubbo * dubbo-samples-validation:change groupId and package to org.apache.dubbo * dubbo-samples-version:change groupId and package to org.apache.dubbo * change groupId and package to org.apache.dubbo * fix README * dubbo-samples-rest:change groupId and package to org.apache.dubbo * add rat and checkstyle plugin
- Loading branch information
1 parent
d715410
commit 723ffb3ae50bc88d85f677d12c2f3323ee4f63fa
Showing
29 changed files
with
239 additions
and
90 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,8 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE suppressions PUBLIC | ||
"-//Puppy Crawl//DTD Suppressions 1.1//EN" | ||
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> | ||
<suppressions> | ||
<suppress files="[\\/]src[\\/]main[\\/]java[\\/]com[\\/]alibaba[\\/]com[\\/]caucho[\\/]hessian" checks=".*"/> | ||
<suppress files="Yylex\.java" checks="AvoidEscapedUnicodeCharacters"/> | ||
</suppressions> |
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,24 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE module PUBLIC | ||
"-//Puppy Crawl//DTD Check Configuration 1.3//EN" | ||
"http://checkstyle.sourceforge.net/dtds/configuration_1_3.dtd"> | ||
|
||
<module name="Checker"> | ||
<property name="charset" value="UTF-8"/> | ||
<property name="fileExtensions" value="java"/> | ||
|
||
<!-- TreeWalker Checks --> | ||
<module name="TreeWalker"> | ||
<module name="SuppressWarningsHolder"/> | ||
|
||
<module name="AvoidStarImport"/> | ||
<module name="AvoidEscapedUnicodeCharacters"> | ||
<property name="allowEscapesForControlCharacters" value="true"/> | ||
<property name="allowByTailComment" value="true"/> | ||
<property name="allowNonPrintableEscapes" value="true"/> | ||
</module> | ||
<module name="NoLineWrap"/> | ||
<module name="OuterTypeFilename"/> | ||
<module name="UnusedImports"/> | ||
</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
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
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
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
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
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
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
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
Oops, something went wrong.