|
213 | 213 | </configuration> |
214 | 214 | </plugin> |
215 | 215 |
|
| 216 | + <plugin> |
| 217 | + <groupId>io.confluent</groupId> |
| 218 | + <artifactId>kafka-connect-maven-plugin</artifactId> |
| 219 | + <version>0.11.3</version> |
| 220 | + <executions> |
| 221 | + <execution> |
| 222 | + <phase>package</phase> |
| 223 | + <goals> |
| 224 | + <goal>kafka-connect</goal> |
| 225 | + </goals> |
| 226 | + <configuration> |
| 227 | + <title>Kafka Connect Redis</title> |
| 228 | + <documentationUrl>${project.url}/blob/master/README.md</documentationUrl> |
| 229 | + <ownerLogo>docs/logos/jaredpetersen-logo.png</ownerLogo> |
| 230 | + <ownerUsername>jaredpetersen</ownerUsername> |
| 231 | + <ownerType>user</ownerType> |
| 232 | + <ownerName>Jared Petersen</ownerName> |
| 233 | + <ownerUrl>https://github.com/jaredpetersen</ownerUrl> |
| 234 | + <supportProviderName>Open Source Community</supportProviderName> |
| 235 | + <supportSummary>Support provided through community involvement.</supportSummary> |
| 236 | + <supportUrl>${project.issueManagement.url}</supportUrl> |
| 237 | + <confluentControlCenterIntegration>true</confluentControlCenterIntegration> |
| 238 | + <componentTypes> |
| 239 | + <componentType>sink</componentType> |
| 240 | + </componentTypes> |
| 241 | + <requirements> |
| 242 | + <requirement>Redis 2.6+</requirement> |
| 243 | + </requirements> |
| 244 | + <tags> |
| 245 | + <tag>redis</tag> |
| 246 | + </tags> |
| 247 | + </configuration> |
| 248 | + </execution> |
| 249 | + </executions> |
| 250 | + </plugin> |
| 251 | + |
| 252 | + <plugin> |
| 253 | + <groupId>org.apache.maven.plugins</groupId> |
| 254 | + <artifactId>maven-assembly-plugin</artifactId> |
| 255 | + <version>3.3.0</version> |
| 256 | + <configuration> |
| 257 | + <descriptorRefs> |
| 258 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 259 | + </descriptorRefs> |
| 260 | + <finalName>${project.name}-${project.version}</finalName> |
| 261 | + <appendAssemblyId>false</appendAssemblyId> |
| 262 | + </configuration> |
| 263 | + <executions> |
| 264 | + <execution> |
| 265 | + <id>make-assembly</id> |
| 266 | + <phase>package</phase> |
| 267 | + <goals> |
| 268 | + <goal>single</goal> |
| 269 | + </goals> |
| 270 | + </execution> |
| 271 | + </executions> |
| 272 | + </plugin> |
| 273 | + |
216 | 274 | <plugin> |
217 | 275 | <groupId>org.apache.maven.plugins</groupId> |
218 | 276 | <artifactId>maven-failsafe-plugin</artifactId> |
|
273 | 331 | </executions> |
274 | 332 | </plugin> |
275 | 333 |
|
276 | | - <plugin> |
277 | | - <groupId>org.apache.maven.plugins</groupId> |
278 | | - <artifactId>maven-assembly-plugin</artifactId> |
279 | | - <version>3.3.0</version> |
280 | | - <configuration> |
281 | | - <descriptorRefs> |
282 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
283 | | - </descriptorRefs> |
284 | | - <finalName>${project.name}-${project.version}</finalName> |
285 | | - <appendAssemblyId>false</appendAssemblyId> |
286 | | - </configuration> |
287 | | - <executions> |
288 | | - <execution> |
289 | | - <id>make-assembly</id> |
290 | | - <phase>package</phase> |
291 | | - <goals> |
292 | | - <goal>single</goal> |
293 | | - </goals> |
294 | | - </execution> |
295 | | - </executions> |
296 | | - </plugin> |
297 | | - |
298 | | - <plugin> |
299 | | - <groupId>io.confluent</groupId> |
300 | | - <artifactId>kafka-connect-maven-plugin</artifactId> |
301 | | - <version>0.11.3</version> |
302 | | - <executions> |
303 | | - <execution> |
304 | | - <phase>install</phase> |
305 | | - <goals> |
306 | | - <goal>kafka-connect</goal> |
307 | | - </goals> |
308 | | - <configuration> |
309 | | - <title>Kafka Connect Redis</title> |
310 | | - <documentationUrl>${project.url}/blob/master/README.md</documentationUrl> |
311 | | - <ownerLogo>docs/logos/jaredpetersen-logo.png</ownerLogo> |
312 | | - <ownerUsername>jaredpetersen</ownerUsername> |
313 | | - <ownerType>user</ownerType> |
314 | | - <ownerName>Jared Petersen</ownerName> |
315 | | - <ownerUrl>https://github.com/jaredpetersen</ownerUrl> |
316 | | - <supportProviderName>Open Source Community</supportProviderName> |
317 | | - <supportSummary>Support provided through community involvement.</supportSummary> |
318 | | - <supportUrl>${project.issueManagement.url}</supportUrl> |
319 | | - <confluentControlCenterIntegration>true</confluentControlCenterIntegration> |
320 | | - <componentTypes> |
321 | | - <componentType>sink</componentType> |
322 | | - </componentTypes> |
323 | | - <requirements> |
324 | | - <requirement>Redis 2.6+</requirement> |
325 | | - </requirements> |
326 | | - <tags> |
327 | | - <tag>redis</tag> |
328 | | - </tags> |
329 | | - </configuration> |
330 | | - </execution> |
331 | | - </executions> |
332 | | - </plugin> |
333 | | - |
334 | 334 | <plugin> |
335 | 335 | <groupId>org.apache.maven.plugins</groupId> |
336 | 336 | <artifactId>maven-source-plugin</artifactId> |
|
371 | 371 | <executions> |
372 | 372 | <execution> |
373 | 373 | <id>sign-artifacts</id> |
374 | | - <phase>deploy</phase> |
| 374 | + <phase>install</phase> |
375 | 375 | <goals> |
376 | 376 | <goal>sign</goal> |
377 | 377 | </goals> |
|
0 commit comments