Skip to content

Commit

Permalink
Bugfix for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vongosling committed Dec 29, 2016
1 parent 167cce0 commit 9edaab1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import java.io.File;


public class BrokerPathConfigHelper {
private static String brokerConfigPath = System.getProperty("user.home") + File.separator + "store"
+ File.separator + "config" + File.separator + "broker.properties";
Expand Down
10 changes: 9 additions & 1 deletion style/rmq_checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<!-- header -->
<module name="RegexpHeader">
<property name="header" value="/\*\*\nLicensed to the Apache Software Foundation*"/>
<property name="header" value="/\*\nLicensed to the Apache Software Foundation*"/>
</module>

<module name="RegexpSingleline">
Expand All @@ -51,6 +51,14 @@
<property name="format" value="@alibaba"/>
<property name="message" value="Recommended remove @alibaba keyword!"/>
</module>
<module name="RegexpSingleline">
<property name="format" value="@taobao"/>
<property name="message" value="Recommended remove @taobao keyword!"/>
</module>
<module name="RegexpSingleline">
<property name="format" value="@author"/>
<property name="message" value="Recommended remove @author keyword!"/>
</module>

<module name="RegexpSingleline">
<property name="format"
Expand Down

0 comments on commit 9edaab1

Please sign in to comment.