Skip to content

Commit f5bfaf9

Browse files
Artem LabazinArtem Labazin
authored andcommitted
update dependencies
1 parent 85d0b88 commit f5bfaf9

71 files changed

Lines changed: 160 additions & 145 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codestyle/checkstyle.xml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"http://checkstyle.sourceforge.net/dtds/configuration_1_3.dtd">
55

66
<!--
7-
Copyright 2019 the original author or authors.
7+
Copyright 2020 the original author or authors.
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.
@@ -65,6 +65,9 @@ limitations under the License.
6565

6666
<module name="SuppressWarningsFilter" />
6767

68+
<module name="LineLength">
69+
<property name="max" value="140"/>
70+
</module>
6871

6972
<module name="TreeWalker">
7073
<module name="SuppressWarningsHolder" />
@@ -74,7 +77,6 @@ limitations under the License.
7477
<module name="JavadocMethod">
7578
<property name="scope" value="protected"/>
7679
<property name="allowedAnnotations" value="Override, Test"/>
77-
<property name="allowThrowsTagsForSubclasses" value="true"/>
7880
</module>
7981
<module name="JavadocType">
8082
<property name="scope" value="protected"/>
@@ -182,9 +184,6 @@ limitations under the License.
182184
<module name="AnonInnerLength">
183185
<property name="max" value="20"/>
184186
</module>
185-
<module name="LineLength">
186-
<property name="max" value="140"/>
187-
</module>
188187
<module name="MethodLength">
189188
<property name="tokens" value="METHOD_DEF"/>
190189
<property name="max" value="60"/>
@@ -233,7 +232,7 @@ limitations under the License.
233232
<module name="OperatorWrap">
234233
<property name="option" value="NL"/>
235234
<property name="tokens"
236-
value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LT, MINUS, MOD, NOT_EQUAL, QUESTION, SL, SR, STAR"/>
235+
value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LE, LITERAL_INSTANCEOF, LT, MINUS, MOD, NOT_EQUAL, QUESTION, SL, SR, STAR"/>
237236
</module>
238237
<module name="ParenPad"/>
239238
<module name="SeparatorWrap">
@@ -346,7 +345,6 @@ limitations under the License.
346345
<module name="OneStatementPerLine"/>
347346
<module name="PackageDeclaration"/>
348347
<module name="ParameterAssignment"/>
349-
<module name="SimplifyBooleanExpression"/>
350348
<module name="SimplifyBooleanReturn"/>
351349
<module name="StringLiteralEquality"/>
352350
<module name="SuperClone"/>
@@ -378,11 +376,10 @@ limitations under the License.
378376
<property name="caseIndent" value="0"/>
379377
<property name="throwsIndent" value="0"/>
380378
<property name="lineWrappingIndentation" value="4"/>
381-
<property name="arrayInitIndent" value="4"/>
379+
<property name="arrayInitIndent" value="2"/>
382380
<property name="forceStrictCondition" value="false"/>
383381
</module>
384382
<module name="OuterTypeFilename"/>
385-
<module name="TodoComment"/>
386383
<module name="UncommentedMain">
387384
<property name="excludedClasses" value="\.Main$"/>
388385
</module>

.codestyle/findbugs.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<!--
4-
Copyright 2019 the original author or authors.
4+
Copyright 2020 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

.codestyle/license_for_check.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 the original author or authors.
2+
* Copyright 2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

.codestyle/pmd.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<!--
4-
Copyright 2019 the original author or authors.
4+
Copyright 2020 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -24,20 +24,24 @@ limitations under the License.
2424
<description>PMD Rules</description>
2525

2626
<rule ref="category/java/bestpractices.xml">
27-
<exclude name="AvoidUsingHardCodedIP" />
27+
<exclude name="AvoidPrintStackTrace" />
28+
<exclude name="SystemPrintln" />
2829
<exclude name="UseVarargs" />
2930
</rule>
3031
<rule ref="category/java/codestyle.xml">
32+
<exclude name="LinguisticNaming" />
3133
<exclude name="AbstractNaming" />
3234
<exclude name="AtLeastOneConstructor" />
3335
<exclude name="AvoidPrefixingMethodParameters" />
36+
<exclude name="ClassNamingConventions" />
3437
<exclude name="CommentDefaultAccessModifier" />
3538
<exclude name="DefaultPackage" />
3639
<exclude name="FieldDeclarationsShouldBeAtStartOfClass" />
3740
<exclude name="LocalVariableCouldBeFinal" />
3841
<exclude name="LongVariable" />
3942
<exclude name="MethodArgumentCouldBeFinal" />
4043
<exclude name="OnlyOneReturn" />
44+
<exclude name="PrematureDeclaration" />
4145
<exclude name="ShortClassName" />
4246
<exclude name="ShortMethodName" />
4347
<exclude name="ShortVariable" />
@@ -48,11 +52,13 @@ limitations under the License.
4852
<exclude name="AvoidCatchingGenericException" />
4953
<exclude name="AvoidRethrowingException" />
5054
<exclude name="AvoidThrowingNullPointerException" />
55+
<exclude name="CyclomaticComplexity" />
5156
<exclude name="DataClass" />
5257
<exclude name="ExcessiveImports" />
5358
<exclude name="ExcessivePublicCount" />
5459
<exclude name="LawOfDemeter" />
5560
<exclude name="LoosePackageCoupling" />
61+
<exclude name="SimplifyBooleanExpressions" />
5662
<exclude name="TooManyFields" />
5763
<exclude name="TooManyMethods" />
5864

@@ -69,12 +75,16 @@ limitations under the License.
6975
<exclude name="AvoidFieldNameMatchingMethodName" />
7076
<exclude name="AvoidFieldNameMatchingTypeName" />
7177
<exclude name="BeanMembersShouldSerialize" />
78+
<exclude name="CompareObjectsWithEquals" />
7279
<exclude name="DataflowAnomalyAnalysis" />
7380
<exclude name="DoNotCallSystemExit" />
81+
<exclude name="DontImportSun" />
7482
<exclude name="MissingBreakInSwitch" />
7583
</rule>
7684
<rule ref="category/java/multithreading.xml">
85+
<exclude name="AvoidSynchronizedAtMethodLevel" />
7786
<exclude name="DoNotUseThreads" />
87+
<exclude name="UseConcurrentHashMap" />
7888
</rule>
7989
<rule ref="category/java/performance.xml">
8090
<exclude name="AvoidUsingShortType" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip

.settings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<!--
4-
Copyright 2019 the original author or authors.
4+
Copyright 2020 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

CHANGELOG.md

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

1212
- Add more unit and integration tests.
1313

14+
## [2.0.1](https://github.com/appulse-projects/epmd-java/releases/tag/2.0.1) - 2020-06-12
15+
16+
### Changed
17+
18+
- Updated dependencies;
19+
- Updated copyrights;
20+
- Unknown version has `Integer.MAX_VALUE` code instead of `-1`.
21+
1422
## [2.0.0](https://github.com/appulse-projects/epmd-java/releases/tag/2.0.0) - 2019-03-17
1523

1624
### Added

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ If you are adding a new file it should have a header like this:
8686

8787
```
8888
#
89-
# Copyright 2019 the original author or authors.
89+
# Copyright 2020 the original author or authors.
9090
#
9191
# Licensed under the Apache License, Version 2.0 (the "License");
9292
# you may not use this file except in compliance with the License.

client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Client's library for `EPMD` server.
1414
<dependency>
1515
<groupId>io.appulse.epmd.java</groupId>
1616
<artifactId>client</artifactId>
17-
<version>2.0.0</version>
17+
<version>2.0.1</version>
1818
</dependency>
1919
...
2020
</dependencies>

client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<!--
4-
Copyright 2019 the original author or authors.
4+
Copyright 2020 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse</groupId>
2727
<artifactId>epmd-java</artifactId>
28-
<version>2.0.0</version>
28+
<version>2.0.1</version>
2929
</parent>
3030

3131
<groupId>io.appulse.epmd.java</groupId>
@@ -43,7 +43,7 @@ limitations under the License.
4343
<dependency>
4444
<groupId>io.netty</groupId>
4545
<artifactId>netty-all</artifactId>
46-
<version>4.1.33.Final</version>
46+
<version>4.1.50.Final</version>
4747
</dependency>
4848
</dependencies>
4949

0 commit comments

Comments
 (0)