Skip to content

Commit 948ced3

Browse files
committed
Update deps
1 parent c8eb060 commit 948ced3

File tree

12 files changed

+289
-162
lines changed

12 files changed

+289
-162
lines changed

.codestyle/checkstyle.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ limitations under the License.
7171

7272
<!-- Checks for Javadoc comments. -->
7373
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
74-
<module name="JavadocMethod">
74+
<!-- <module name="JavadocMethod">
7575
<property name="scope" value="protected"/>
7676
<property name="allowedAnnotations" value="Override, Test"/>
7777
<property name="allowThrowsTagsForSubclasses" value="true"/>
@@ -90,15 +90,14 @@ limitations under the License.
9090
<module name="SummaryJavadoc">
9191
<property name="forbiddenSummaryFragments" value="^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"/>
9292
</module>
93-
<module name="JavadocParagraph"/>
9493
<module name="SingleLineJavadoc">
9594
<property name="ignoreInlineTags" value="false"/>
9695
</module>
9796
<module name="AtclauseOrder">
9897
<property name="tagOrder" value="@param, @return, @throws, @see, @since, @author, @version, @deprecated"/>
9998
<property name="target" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
10099
</module>
101-
<module name="NonEmptyAtclauseDescription"/>
100+
<module name="NonEmptyAtclauseDescription"/> -->
102101

103102

104103
<!-- Checks for Naming Conventions. -->
@@ -234,7 +233,7 @@ limitations under the License.
234233
<module name="OperatorWrap">
235234
<property name="option" value="NL"/>
236235
<property name="tokens"
237-
value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LT, MINUS, MOD, NOT_EQUAL, QUESTION, SL, SR, STAR"/>
236+
value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LE, LITERAL_INSTANCEOF, LT, MINUS, MOD, NOT_EQUAL, QUESTION, SL, SR, STAR"/>
238237
</module>
239238
<module name="ParenPad"/>
240239
<module name="SeparatorWrap">
@@ -379,11 +378,10 @@ limitations under the License.
379378
<property name="caseIndent" value="0"/>
380379
<property name="throwsIndent" value="0"/>
381380
<property name="lineWrappingIndentation" value="4"/>
382-
<property name="arrayInitIndent" value="4"/>
381+
<property name="arrayInitIndent" value="2"/>
383382
<property name="forceStrictCondition" value="false"/>
384383
</module>
385384
<module name="OuterTypeFilename"/>
386-
<module name="TodoComment"/>
387385
<module name="UncommentedMain">
388386
<property name="excludedClasses" value="\.Main$"/>
389387
</module>

.codestyle/pmd.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,21 @@ limitations under the License.
2525

2626
<rule ref="category/java/bestpractices.xml">
2727
<exclude name="UseVarargs" />
28+
<exclude name="SystemPrintln" />
2829
</rule>
2930
<rule ref="category/java/codestyle.xml">
3031
<exclude name="AbstractNaming" />
3132
<exclude name="AtLeastOneConstructor" />
3233
<exclude name="AvoidPrefixingMethodParameters" />
34+
<exclude name="ClassNamingConventions" />
3335
<exclude name="CommentDefaultAccessModifier" />
3436
<exclude name="DefaultPackage" />
3537
<exclude name="FieldDeclarationsShouldBeAtStartOfClass" />
3638
<exclude name="LocalVariableCouldBeFinal" />
3739
<exclude name="LongVariable" />
3840
<exclude name="MethodArgumentCouldBeFinal" />
3941
<exclude name="OnlyOneReturn" />
42+
<exclude name="PrematureDeclaration" />
4043
<exclude name="ShortClassName" />
4144
<exclude name="ShortMethodName" />
4245
<exclude name="ShortVariable" />
@@ -47,7 +50,9 @@ limitations under the License.
4750
<exclude name="AvoidCatchingGenericException" />
4851
<exclude name="AvoidRethrowingException" />
4952
<exclude name="AvoidThrowingNullPointerException" />
53+
<exclude name="CyclomaticComplexity" />
5054
<exclude name="ExcessiveImports" />
55+
<exclude name="ExcessivePublicCount" />
5156
<exclude name="LawOfDemeter" />
5257
<exclude name="LoosePackageCoupling" />
5358
<exclude name="TooManyFields" />
@@ -67,9 +72,12 @@ limitations under the License.
6772
<exclude name="AvoidFieldNameMatchingMethodName" />
6873
<exclude name="BeanMembersShouldSerialize" />
6974
<exclude name="DataflowAnomalyAnalysis" />
75+
<exclude name="DontImportSun" />
7076
<exclude name="MissingBreakInSwitch" />
7177
</rule>
7278
<rule ref="category/java/multithreading.xml">
79+
<exclude name="DoNotUseThreads" />
80+
<exclude name="UseConcurrentHashMap" />
7381
</rule>
7482
<rule ref="category/java/performance.xml">
7583
<exclude name="AvoidUsingShortType" />

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111

1212
- Add different logging frameworks.
1313

14+
## [1.1.1](https://github.com/appulse-projects/logging-java/releases/tag/1.1.1) - 2019-03-02
15+
16+
### Changed
17+
18+
- Updated dependencies;
19+
- Changed copyright.
20+
1421
## [1.1.0](https://github.com/appulse-projects/logging-java/releases/tag/1.1.0) - 2018-06-05
1522

1623
Reorganized code.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Just add dependency to your project.
1717
<dependency>
1818
<groupId>io.appulse</groupId>
1919
<artifactId>logging-java</artifactId>
20-
<version>1.1.0</version>
20+
<version>1.1.1</version>
2121
</dependency>
2222
...
2323
</dependencies>
@@ -26,7 +26,7 @@ Just add dependency to your project.
2626
**Gradle**:
2727

2828
```groovy
29-
compile 'io.appulse:logging-java:1.1.0'
29+
compile 'io.appulse:logging-java:1.1.1'
3030
```
3131

3232
And use it as usual:

0 commit comments

Comments
 (0)