Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
xxlabaza committed Mar 2, 2019
1 parent c8eb060 commit 948ced3
Show file tree
Hide file tree
Showing 12 changed files with 289 additions and 162 deletions.
10 changes: 4 additions & 6 deletions .codestyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ limitations under the License.

<!-- Checks for Javadoc comments. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
<module name="JavadocMethod">
<!-- <module name="JavadocMethod">
<property name="scope" value="protected"/>
<property name="allowedAnnotations" value="Override, Test"/>
<property name="allowThrowsTagsForSubclasses" value="true"/>
Expand All @@ -90,15 +90,14 @@ limitations under the License.
<module name="SummaryJavadoc">
<property name="forbiddenSummaryFragments" value="^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"/>
</module>
<module name="JavadocParagraph"/>
<module name="SingleLineJavadoc">
<property name="ignoreInlineTags" value="false"/>
</module>
<module name="AtclauseOrder">
<property name="tagOrder" value="@param, @return, @throws, @see, @since, @author, @version, @deprecated"/>
<property name="target" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
</module>
<module name="NonEmptyAtclauseDescription"/>
<module name="NonEmptyAtclauseDescription"/> -->


<!-- Checks for Naming Conventions. -->
Expand Down Expand Up @@ -234,7 +233,7 @@ limitations under the License.
<module name="OperatorWrap">
<property name="option" value="NL"/>
<property name="tokens"
value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LT, MINUS, MOD, NOT_EQUAL, QUESTION, SL, SR, STAR"/>
value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LE, LITERAL_INSTANCEOF, LT, MINUS, MOD, NOT_EQUAL, QUESTION, SL, SR, STAR"/>
</module>
<module name="ParenPad"/>
<module name="SeparatorWrap">
Expand Down Expand Up @@ -379,11 +378,10 @@ limitations under the License.
<property name="caseIndent" value="0"/>
<property name="throwsIndent" value="0"/>
<property name="lineWrappingIndentation" value="4"/>
<property name="arrayInitIndent" value="4"/>
<property name="arrayInitIndent" value="2"/>
<property name="forceStrictCondition" value="false"/>
</module>
<module name="OuterTypeFilename"/>
<module name="TodoComment"/>
<module name="UncommentedMain">
<property name="excludedClasses" value="\.Main$"/>
</module>
Expand Down
8 changes: 8 additions & 0 deletions .codestyle/pmd.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,21 @@ limitations under the License.

<rule ref="category/java/bestpractices.xml">
<exclude name="UseVarargs" />
<exclude name="SystemPrintln" />
</rule>
<rule ref="category/java/codestyle.xml">
<exclude name="AbstractNaming" />
<exclude name="AtLeastOneConstructor" />
<exclude name="AvoidPrefixingMethodParameters" />
<exclude name="ClassNamingConventions" />
<exclude name="CommentDefaultAccessModifier" />
<exclude name="DefaultPackage" />
<exclude name="FieldDeclarationsShouldBeAtStartOfClass" />
<exclude name="LocalVariableCouldBeFinal" />
<exclude name="LongVariable" />
<exclude name="MethodArgumentCouldBeFinal" />
<exclude name="OnlyOneReturn" />
<exclude name="PrematureDeclaration" />
<exclude name="ShortClassName" />
<exclude name="ShortMethodName" />
<exclude name="ShortVariable" />
Expand All @@ -47,7 +50,9 @@ limitations under the License.
<exclude name="AvoidCatchingGenericException" />
<exclude name="AvoidRethrowingException" />
<exclude name="AvoidThrowingNullPointerException" />
<exclude name="CyclomaticComplexity" />
<exclude name="ExcessiveImports" />
<exclude name="ExcessivePublicCount" />
<exclude name="LawOfDemeter" />
<exclude name="LoosePackageCoupling" />
<exclude name="TooManyFields" />
Expand All @@ -67,9 +72,12 @@ limitations under the License.
<exclude name="AvoidFieldNameMatchingMethodName" />
<exclude name="BeanMembersShouldSerialize" />
<exclude name="DataflowAnomalyAnalysis" />
<exclude name="DontImportSun" />
<exclude name="MissingBreakInSwitch" />
</rule>
<rule ref="category/java/multithreading.xml">
<exclude name="DoNotUseThreads" />
<exclude name="UseConcurrentHashMap" />
</rule>
<rule ref="category/java/performance.xml">
<exclude name="AvoidUsingShortType" />
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Add different logging frameworks.

## [1.1.1](https://github.com/appulse-projects/logging-java/releases/tag/1.1.1) - 2019-03-02

### Changed

- Updated dependencies;
- Changed copyright.

## [1.1.0](https://github.com/appulse-projects/logging-java/releases/tag/1.1.0) - 2018-06-05

Reorganized code.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Just add dependency to your project.
<dependency>
<groupId>io.appulse</groupId>
<artifactId>logging-java</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
...
</dependencies>
Expand All @@ -26,7 +26,7 @@ Just add dependency to your project.
**Gradle**:

```groovy
compile 'io.appulse:logging-java:1.1.0'
compile 'io.appulse:logging-java:1.1.1'
```

And use it as usual:
Expand Down
Loading

0 comments on commit 948ced3

Please sign in to comment.