Skip to content

Commit 81c2c62

Browse files
author
Artem Labazin
committed
Update dependencies
1 parent db3f883 commit 81c2c62

31 files changed

Lines changed: 61 additions & 52 deletions

.codestyle/checkstyle.xml

Lines changed: 4 additions & 5 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" />
@@ -182,9 +185,6 @@ limitations under the License.
182185
<module name="AnonInnerLength">
183186
<property name="max" value="20"/>
184187
</module>
185-
<module name="LineLength">
186-
<property name="max" value="140"/>
187-
</module>
188188
<module name="MethodLength">
189189
<property name="tokens" value="METHOD_DEF"/>
190190
<property name="max" value="60"/>
@@ -346,7 +346,6 @@ limitations under the License.
346346
<module name="OneStatementPerLine"/>
347347
<module name="PackageDeclaration"/>
348348
<module name="ParameterAssignment"/>
349-
<module name="SimplifyBooleanExpression"/>
350349
<module name="SimplifyBooleanReturn"/>
351350
<module name="StringLiteralEquality"/>
352351
<module name="SuperClone"/>

.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: 2 additions & 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.
@@ -55,6 +55,7 @@ limitations under the License.
5555
<exclude name="ExcessivePublicCount" />
5656
<exclude name="LawOfDemeter" />
5757
<exclude name="LoosePackageCoupling" />
58+
<exclude name="SimplifyBooleanExpressions" />
5859
<exclude name="TooManyFields" />
5960
<exclude name="TooManyMethods" />
6061

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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111

1212
- Add different logging frameworks.
1313

14+
## [1.1.3](https://github.com/appulse-projects/logging-java/releases/tag/1.1.3) - 2020-02-25
15+
16+
### Changed
17+
18+
- Updated dependencies;
19+
- Changed copyright;
20+
- Update Maven wrapper;
21+
- Improve different codestyle settings.
22+
1423
## [1.1.2](https://github.com/appulse-projects/logging-java/releases/tag/1.1.2) - 2019-05-29
1524

1625
### 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.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Just add dependency to your project.
1818
<dependency>
1919
<groupId>io.appulse</groupId>
2020
<artifactId>logging-java</artifactId>
21-
<version>1.1.2</version>
21+
<version>1.1.3</version>
2222
</dependency>
2323
...
2424
</dependencies>
@@ -27,7 +27,7 @@ Just add dependency to your project.
2727
**Gradle**:
2828

2929
```groovy
30-
compile 'io.appulse:logging-java:1.1.2'
30+
compile 'io.appulse:logging-java:1.1.3'
3131
```
3232

3333
And use it as usual:

pom.xml

Lines changed: 18 additions & 18 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,7 +24,7 @@ limitations under the License.
2424

2525
<groupId>io.appulse</groupId>
2626
<artifactId>logging-java</artifactId>
27-
<version>1.1.2</version>
27+
<version>1.1.3</version>
2828
<packaging>jar</packaging>
2929

3030
<properties>
@@ -66,7 +66,7 @@ limitations under the License.
6666
<url>https://github.com/appulse-projects/logging-java</url>
6767
<connection>scm:git:https://github.com/appulse-projects/logging-java.git</connection>
6868
<developerConnection>scm:git:https://github.com/appulse-projects/logging-java.git</developerConnection>
69-
<tag>1.1.2</tag>
69+
<tag>1.1.3</tag>
7070
</scm>
7171

7272
<distributionManagement>
@@ -102,7 +102,7 @@ limitations under the License.
102102
<dependency>
103103
<groupId>org.projectlombok</groupId>
104104
<artifactId>lombok</artifactId>
105-
<version>1.18.8</version>
105+
<version>1.18.12</version>
106106
<scope>provided</scope>
107107
</dependency>
108108

@@ -115,33 +115,33 @@ limitations under the License.
115115
<dependency>
116116
<groupId>org.junit.jupiter</groupId>
117117
<artifactId>junit-jupiter-engine</artifactId>
118-
<version>5.4.2</version>
118+
<version>5.6.0</version>
119119
<scope>test</scope>
120120
</dependency>
121121
<dependency>
122122
<groupId>org.junit.jupiter</groupId>
123123
<artifactId>junit-jupiter-params</artifactId>
124-
<version>5.4.2</version>
124+
<version>5.6.0</version>
125125
<scope>test</scope>
126126
</dependency>
127127

128128
<dependency>
129129
<groupId>org.assertj</groupId>
130130
<artifactId>assertj-core</artifactId>
131-
<version>3.12.2</version>
131+
<version>3.15.0</version>
132132
<scope>test</scope>
133133
</dependency>
134134

135135
<dependency>
136136
<groupId>org.mockito</groupId>
137137
<artifactId>mockito-core</artifactId>
138-
<version>2.27.0</version>
138+
<version>3.3.0</version>
139139
<scope>test</scope>
140140
</dependency>
141141
<dependency>
142142
<groupId>org.mockito</groupId>
143143
<artifactId>mockito-junit-jupiter</artifactId>
144-
<version>2.27.5</version>
144+
<version>3.3.0</version>
145145
<scope>test</scope>
146146
</dependency>
147147

@@ -154,7 +154,7 @@ limitations under the License.
154154
<dependency>
155155
<groupId>com.github.spotbugs</groupId>
156156
<artifactId>spotbugs-annotations</artifactId>
157-
<version>3.1.12</version>
157+
<version>4.0.0</version>
158158
<scope>provided</scope>
159159
</dependency>
160160
<dependency>
@@ -170,7 +170,7 @@ limitations under the License.
170170
<plugin>
171171
<groupId>org.apache.maven.plugins</groupId>
172172
<artifactId>maven-source-plugin</artifactId>
173-
<version>3.1.0</version>
173+
<version>3.2.1</version>
174174
<executions>
175175
<execution>
176176
<id>attach-sources</id>
@@ -184,7 +184,7 @@ limitations under the License.
184184
<plugin>
185185
<groupId>pl.project13.maven</groupId>
186186
<artifactId>git-commit-id-plugin</artifactId>
187-
<version>3.0.0</version>
187+
<version>3.0.1</version>
188188
<executions>
189189
<execution>
190190
<id>git-infos</id>
@@ -214,7 +214,7 @@ limitations under the License.
214214
<plugin>
215215
<groupId>org.apache.maven.plugins</groupId>
216216
<artifactId>maven-javadoc-plugin</artifactId>
217-
<version>3.1.0</version>
217+
<version>3.1.1</version>
218218
<configuration>
219219
<additionalOptions>-Xdoclint:none</additionalOptions>
220220
<additionalparam>-Xdoclint:none</additionalparam>
@@ -291,7 +291,7 @@ limitations under the License.
291291
<plugin>
292292
<groupId>com.github.spotbugs</groupId>
293293
<artifactId>spotbugs-maven-plugin</artifactId>
294-
<version>3.1.11</version>
294+
<version>3.1.12.2</version>
295295
<configuration>
296296
<effort>Max</effort>
297297
<threshold>Low</threshold>
@@ -312,7 +312,7 @@ limitations under the License.
312312
<plugin>
313313
<groupId>org.apache.maven.plugins</groupId>
314314
<artifactId>maven-pmd-plugin</artifactId>
315-
<version>3.12.0</version>
315+
<version>3.13.0</version>
316316
<configuration>
317317
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
318318
<targetJdk>${maven.compiler.source}</targetJdk>
@@ -338,12 +338,12 @@ limitations under the License.
338338
<plugin>
339339
<groupId>org.apache.maven.plugins</groupId>
340340
<artifactId>maven-checkstyle-plugin</artifactId>
341-
<version>3.1.0</version>
341+
<version>3.1.1</version>
342342
<dependencies>
343343
<dependency>
344344
<groupId>com.puppycrawl.tools</groupId>
345345
<artifactId>checkstyle</artifactId>
346-
<version>8.21</version>
346+
<version>8.29</version>
347347
</dependency>
348348
</dependencies>
349349
<executions>
@@ -404,7 +404,7 @@ limitations under the License.
404404
<plugin>
405405
<groupId>org.apache.maven.plugins</groupId>
406406
<artifactId>maven-enforcer-plugin</artifactId>
407-
<version>3.0.0-M2</version>
407+
<version>3.0.0-M3</version>
408408
<executions>
409409
<execution>
410410
<id>enforce-versions</id>

0 commit comments

Comments
 (0)