Skip to content

Commit 85030d4

Browse files
author
Animesh Pandey
committed
Update mvn dependencies and checkstyle
1 parent 3d2dffe commit 85030d4

19 files changed

+506
-659
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
*.iml
3+
target
4+
build
5+
out

E:\es_source\vader-sentiment-app.log

Whitespace-only changes.

pom.xml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<plugin>
9191
<groupId>org.apache.maven.plugins</groupId>
9292
<artifactId>maven-compiler-plugin</artifactId>
93-
<version>3.5.1</version>
93+
<version>3.8.1</version>
9494
<configuration>
9595
<source>${maven.compiler.target}</source>
9696
<target>${maven.compiler.target}</target>
@@ -100,7 +100,7 @@
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-surefire-plugin</artifactId>
103-
<version>2.11</version>
103+
<version>3.0.0-M5</version>
104104
<configuration>
105105
<includes>
106106
<include>**/*Test*.java</include>
@@ -111,7 +111,7 @@
111111
<plugin>
112112
<groupId>org.apache.maven.plugins</groupId>
113113
<artifactId>maven-source-plugin</artifactId>
114-
<version>2.1.2</version>
114+
<version>3.2.1</version>
115115
<executions>
116116
<execution>
117117
<id>attach-sources</id>
@@ -125,7 +125,7 @@
125125
<plugin>
126126
<groupId>org.apache.maven.plugins</groupId>
127127
<artifactId>maven-javadoc-plugin</artifactId>
128-
<version>2.9.1</version>
128+
<version>3.3.1</version>
129129
<executions>
130130
<execution>
131131
<id>attach-javadocs</id>
@@ -139,6 +139,7 @@
139139
<plugin>
140140
<groupId>org.apache.maven.plugins</groupId>
141141
<artifactId>maven-dependency-plugin</artifactId>
142+
<version>3.2.0</version>
142143
<executions>
143144
<execution>
144145
<id>copy-dependencies</id>
@@ -155,8 +156,9 @@
155156
</plugin>
156157

157158
<plugin>
159+
<groupId>org.apache.maven.plugins</groupId>
158160
<artifactId>maven-assembly-plugin</artifactId>
159-
<version>2.5.3</version>
161+
<version>3.3.0</version>
160162
<configuration>
161163
<appendAssemblyId>false</appendAssemblyId>
162164
<outputDirectory>${project.build.directory}/releases/</outputDirectory>
@@ -182,13 +184,13 @@
182184
<plugin>
183185
<groupId>org.apache.maven.plugins</groupId>
184186
<artifactId>maven-checkstyle-plugin</artifactId>
185-
<version>2.17</version>
187+
<version>3.1.2</version>
186188
<dependencies>
187189
<!-- https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle -->
188190
<dependency>
189191
<groupId>com.puppycrawl.tools</groupId>
190192
<artifactId>checkstyle</artifactId>
191-
<version>7.6</version>
193+
<version>8.40</version>
192194
</dependency>
193195
</dependencies>
194196
<executions>
@@ -211,7 +213,7 @@
211213
<plugin>
212214
<groupId>org.apache.maven.plugins</groupId>
213215
<artifactId>maven-gpg-plugin</artifactId>
214-
<version>1.1</version>
216+
<version>3.0.1</version>
215217
<executions>
216218
<execution>
217219
<id>sign-artifacts</id>
@@ -261,4 +263,4 @@
261263
</dependency>
262264
</dependencies>
263265

264-
</project>
266+
</project>

0 commit comments

Comments
 (0)