Skip to content

Commit f688758

Browse files
committed
Update depedency and plugin versions
1 parent 6d115ce commit f688758

1 file changed

Lines changed: 25 additions & 5 deletions

File tree

pom.xml

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<plugin>
8181
<groupId>org.apache.maven.plugins</groupId>
8282
<artifactId>maven-shade-plugin</artifactId>
83-
<version>3.2.1</version>
83+
<version>3.5.2</version>
8484
<executions>
8585
<execution>
8686
<goals>
@@ -103,13 +103,33 @@
103103
<plugin>
104104
<groupId>org.apache.maven.plugins</groupId>
105105
<artifactId>maven-compiler-plugin</artifactId>
106-
<version>3.8.0</version>
106+
<version>3.13.0</version>
107107
<configuration>
108108
<compilerVersion>${javac.target}</compilerVersion>
109109
<source>${javac.target}</source>
110110
<target>${javac.target}</target>
111111
</configuration>
112112
</plugin>
113+
<plugin>
114+
<groupId>org.apache.maven.plugins</groupId>
115+
<artifactId>maven-enforcer-plugin</artifactId>
116+
<version>3.4.1</version>
117+
<executions>
118+
<execution>
119+
<id>enforce-maven</id>
120+
<goals>
121+
<goal>enforce</goal>
122+
</goals>
123+
<configuration>
124+
<rules>
125+
<requireMavenVersion>
126+
<version>3.9</version>
127+
</requireMavenVersion>
128+
</rules>
129+
</configuration>
130+
</execution>
131+
</executions>
132+
</plugin>
113133
</plugins>
114134
<finalName>${project.name}</finalName>
115135
</build>
@@ -122,7 +142,7 @@
122142
<plugin>
123143
<groupId>org.apache.rat</groupId>
124144
<artifactId>apache-rat-plugin</artifactId>
125-
<version>0.13</version>
145+
<version>0.16.1</version>
126146
<configuration>
127147
<excludes>
128148
<exclude>**/README.md</exclude>
@@ -150,7 +170,7 @@
150170
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
151171
<javac.target>1.8</javac.target>
152172
<samples.version>0.0.2-SNAPSHOT</samples.version>
153-
<jcommander.version>1.72</jcommander.version>
154-
<hdrhistogram.version>2.1.11</hdrhistogram.version>
173+
<jcommander.version>1.82</jcommander.version>
174+
<hdrhistogram.version>2.1.12</hdrhistogram.version>
155175
</properties>
156176
</project>

0 commit comments

Comments
 (0)