|
80 | 80 | <plugin> |
81 | 81 | <groupId>org.apache.maven.plugins</groupId> |
82 | 82 | <artifactId>maven-shade-plugin</artifactId> |
83 | | - <version>3.2.1</version> |
| 83 | + <version>3.5.2</version> |
84 | 84 | <executions> |
85 | 85 | <execution> |
86 | 86 | <goals> |
|
103 | 103 | <plugin> |
104 | 104 | <groupId>org.apache.maven.plugins</groupId> |
105 | 105 | <artifactId>maven-compiler-plugin</artifactId> |
106 | | - <version>3.8.0</version> |
| 106 | + <version>3.13.0</version> |
107 | 107 | <configuration> |
108 | 108 | <compilerVersion>${javac.target}</compilerVersion> |
109 | 109 | <source>${javac.target}</source> |
110 | 110 | <target>${javac.target}</target> |
111 | 111 | </configuration> |
112 | 112 | </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> |
113 | 133 | </plugins> |
114 | 134 | <finalName>${project.name}</finalName> |
115 | 135 | </build> |
|
122 | 142 | <plugin> |
123 | 143 | <groupId>org.apache.rat</groupId> |
124 | 144 | <artifactId>apache-rat-plugin</artifactId> |
125 | | - <version>0.13</version> |
| 145 | + <version>0.16.1</version> |
126 | 146 | <configuration> |
127 | 147 | <excludes> |
128 | 148 | <exclude>**/README.md</exclude> |
|
150 | 170 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
151 | 171 | <javac.target>1.8</javac.target> |
152 | 172 | <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> |
155 | 175 | </properties> |
156 | 176 | </project> |
0 commit comments