Skip to content

Commit

Permalink
Merge pull request Wechat-Group#391 from Wechat-Group/develop
Browse files Browse the repository at this point in the history
合并 Develop
  • Loading branch information
binarywang committed Dec 1, 2017
2 parents 3be1048 + 919a534 commit 3b1645d
Show file tree
Hide file tree
Showing 365 changed files with 5,018 additions and 12,569 deletions.
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-parent</artifactId>
<version>2.8.0</version>
<version>2.9.0</version>
<packaging>pom</packaging>
<name>WeiXin Java Tools - Parent</name>
<description>微信公众号、企业号上级POM</description>
Expand Down Expand Up @@ -80,6 +80,11 @@
<email>crskyp@gmail.com</email>
<url>https://github.com/crskyp</url>
</developer>
<developer>
<name>007</name>
<email>007gzs@gmail.com</email>
<url>https://github.com/007gzs</url>
</developer>
</developers>

<scm>
Expand All @@ -94,6 +99,7 @@
<module>weixin-java-mp</module>
<module>weixin-java-pay</module>
<module>weixin-java-miniapp</module>
<module>weixin-java-open</module>
<!--module>weixin-java-osgi</module-->
</modules>

Expand Down Expand Up @@ -225,6 +231,12 @@
<version>2.9.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
11 changes: 7 additions & 4 deletions quality-checks/google_checks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<property name="allowNonPrintableEscapes" value="true"/>
</module>
<module name="LineLength">
<property name="max" value="100"/>
<property name="max" value="120"/>
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
</module>
<module name="AvoidStarImport"/>
Expand All @@ -52,7 +52,7 @@
</module>
<module name="NeedBraces"/>
<module name="LeftCurly">
<property name="maxLineLength" value="100"/>
<property name="maxLineLength" value="120"/>
</module>
<module name="RightCurly">
<property name="id" value="RightCurlySame"/>
Expand Down Expand Up @@ -163,9 +163,12 @@
<module name="OverloadMethodsDeclarationOrder"/>
<module name="VariableDeclarationUsageDistance"/>
<module name="CustomImportOrder">
<property name="customImportOrderRules"
value="THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS###STANDARD_JAVA_PACKAGE###STATIC"/>
<property name="specialImportsRegExp" value="^javax\."/>
<property name="standardPackageRegExp" value="^java\."/>
<property name="sortImportsInGroupAlphabetically" value="true"/>
<property name="separateLineBetweenGroups" value="true"/>
<property name="customImportOrderRules" value="STATIC###THIRD_PARTY_PACKAGE"/>
<property name="separateLineBetweenGroups" value="false"/>
</module>
<module name="MethodParamPad"/>
<module name="ParenPad"/>
Expand Down
6 changes: 5 additions & 1 deletion weixin-java-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-parent</artifactId>
<version>2.8.0</version>
<version>2.9.0</version>
</parent>

<artifactId>weixin-java-common</artifactId>
Expand Down Expand Up @@ -74,6 +74,10 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
Expand Down
Loading

0 comments on commit 3b1645d

Please sign in to comment.