|
4 | 4 | <groupId>com.github.splunk.kafka.connect</groupId> |
5 | 5 | <artifactId>splunk-kafka-connect</artifactId> |
6 | 6 | <name>splunk-kafka-connect</name> |
7 | | - <version>v2.1.2</version> |
| 7 | + <version>v2.1.1</version> |
8 | 8 | <build> |
9 | 9 | <plugins> |
10 | 10 | <plugin> |
11 | 11 | <artifactId>maven-shade-plugin</artifactId> |
12 | | - <version>3.1.0</version> |
| 12 | + <version>3.4.1</version> |
13 | 13 | <executions> |
14 | 14 | <execution> |
15 | 15 | <phase>package</phase> |
|
29 | 29 | </plugin> |
30 | 30 | <plugin> |
31 | 31 | <artifactId>maven-compiler-plugin</artifactId> |
32 | | - <version>3.7.0</version> |
| 32 | + <version>3.11.0</version> |
33 | 33 | <configuration> |
34 | 34 | <source>${java.version}</source> |
35 | 35 | <target>${java.version}</target> |
|
40 | 40 | </plugin> |
41 | 41 | <plugin> |
42 | 42 | <artifactId>maven-checkstyle-plugin</artifactId> |
43 | | - <version>2.17</version> |
| 43 | + <version>3.2.1</version> |
44 | 44 | <executions> |
45 | 45 | <execution> |
46 | 46 | <id>validate</id> |
|
57 | 57 | <plugin> |
58 | 58 | <groupId>org.jacoco</groupId> |
59 | 59 | <artifactId>jacoco-maven-plugin</artifactId> |
60 | | - <version>0.8.6</version> |
| 60 | + <version>0.8.9</version> |
61 | 61 | <executions> |
62 | 62 | <execution> |
63 | 63 | <id>pre-unit-test</id> |
|
89 | 89 | </plugin> |
90 | 90 | <plugin> |
91 | 91 | <artifactId>maven-surefire-plugin</artifactId> |
92 | | - <version>2.22.2</version> |
| 92 | + <version>3.0.0</version> |
93 | 93 | <configuration> |
94 | 94 | <argLine>${surefireArgLine}</argLine> |
95 | 95 | <skipTests>${skip.unit.tests}</skipTests> |
|
117 | 117 | <dependency> |
118 | 118 | <groupId>org.junit.jupiter</groupId> |
119 | 119 | <artifactId>junit-jupiter-api</artifactId> |
120 | | - <version>5.3.2</version> |
| 120 | + <version>5.9.2</version> |
121 | 121 | <scope>test</scope> |
122 | 122 | <exclusions> |
123 | 123 | <exclusion> |
|
145 | 145 | <dependency> |
146 | 146 | <groupId>org.junit.platform</groupId> |
147 | 147 | <artifactId>junit-platform-launcher</artifactId> |
148 | | - <version>1.3.2</version> |
| 148 | + <version>1.9.2</version> |
149 | 149 | <scope>test</scope> |
150 | 150 | <exclusions> |
151 | 151 | <exclusion> |
|
157 | 157 | <dependency> |
158 | 158 | <groupId>org.junit.jupiter</groupId> |
159 | 159 | <artifactId>junit-jupiter-engine</artifactId> |
160 | | - <version>5.3.2</version> |
| 160 | + <version>5.9.2</version> |
161 | 161 | <scope>test</scope> |
162 | 162 | <exclusions> |
163 | 163 | <exclusion> |
|
169 | 169 | <dependency> |
170 | 170 | <groupId>org.junit.vintage</groupId> |
171 | 171 | <artifactId>junit-vintage-engine</artifactId> |
172 | | - <version>5.3.2</version> |
| 172 | + <version>5.9.2</version> |
173 | 173 | <scope>test</scope> |
174 | 174 | <exclusions> |
175 | 175 | <exclusion> |
|
181 | 181 | <dependency> |
182 | 182 | <groupId>org.slf4j</groupId> |
183 | 183 | <artifactId>slf4j-simple</artifactId> |
184 | | - <version>1.7.26</version> |
| 184 | + <version>2.0.7</version> |
185 | 185 | <scope>test</scope> |
186 | 186 | </dependency> |
187 | 187 | <dependency> |
188 | 188 | <groupId>org.apiguardian</groupId> |
189 | 189 | <artifactId>apiguardian-api</artifactId> |
190 | | - <version>1.0.0</version> |
| 190 | + <version>1.1.2</version> |
191 | 191 | <scope>test</scope> |
192 | 192 | </dependency> |
193 | 193 | </dependencies> |
194 | 194 | <reporting> |
195 | 195 | <plugins> |
196 | 196 | <plugin> |
197 | 197 | <artifactId>maven-jxr-plugin</artifactId> |
198 | | - <version>2.3</version> |
| 198 | + <version>3.3.0</version> |
199 | 199 | </plugin> |
200 | 200 | </plugins> |
201 | 201 | </reporting> |
202 | 202 | <properties> |
203 | | - <maven.compiler.target>1.8</maven.compiler.target> |
204 | | - <java.version>1.8</java.version> |
205 | | - <maven.compiler.source>1.8</maven.compiler.source> |
| 203 | + <jackson.version>2.14.2</jackson.version> |
| 204 | + <junit.platform.version>1.9.2</junit.platform.version> |
| 205 | + <slf4j.version>2.0.7</slf4j.version> |
206 | 206 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
207 | 207 | <junit.version>4.13.2</junit.version> |
208 | | - <junit.jupiter.version>5.3.2</junit.jupiter.version> |
209 | | - <junit.vintage.version>5.3.2</junit.vintage.version> |
210 | | - <junit.platform.version>1.3.2</junit.platform.version> |
| 208 | + <junit.vintage.version>5.9.2</junit.vintage.version> |
| 209 | + <java.version>1.8</java.version> |
| 210 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 211 | + <junit.jupiter.version>5.9.2</junit.jupiter.version> |
| 212 | + <kafka.version>3.4.0</kafka.version> |
| 213 | + <maven.compiler.target>1.8</maven.compiler.target> |
211 | 214 | </properties> |
212 | 215 | </project> |
213 | | - |
|
0 commit comments