|
10 | 10 | <url>https://github.com/scylla/kafka-connect-scylladb</url> |
11 | 11 | <inceptionYear>2020</inceptionYear> |
12 | 12 |
|
13 | | - <scm> |
14 | | - <connection>scm:git:https://github.com/scylla/kafka-connect-scylladb.git</connection> |
15 | | - <developerConnection>scm:git:git@github.com:scylla/kafka-connect-scylladb.git |
16 | | - </developerConnection> |
17 | | - <url>https://github.com/scylladb/kafka-connect-scylladb</url> |
18 | | - <tag>HEAD</tag> |
19 | | - </scm> |
20 | | - |
21 | 13 | <properties> |
22 | 14 | <project.inceptionYear>2020</project.inceptionYear> |
23 | 15 | <license.current.year>2020</license.current.year> |
24 | | - <kafka.connect.maven.plugin.version>0.11.1</kafka.connect.maven.plugin.version> |
| 16 | + <kafka.connect.maven.plugin.version>0.12.0</kafka.connect.maven.plugin.version> |
25 | 17 | <junit.surefire.plugin.version>1.2.0</junit.surefire.plugin.version> |
26 | 18 | <surefire.version>3.0.0-M5</surefire.version> |
27 | 19 | <failsafe.version>3.0.0-M5</failsafe.version> |
|
316 | 308 |
|
317 | 309 | </dependencies> |
318 | 310 |
|
| 311 | + <profiles> |
| 312 | + <profile> |
| 313 | + <id>release-sign-artifacts</id> |
| 314 | + <activation> |
| 315 | + <property> |
| 316 | + <name>performRelease</name> |
| 317 | + <value>true</value> |
| 318 | + </property> |
| 319 | + </activation> |
| 320 | + <build> |
| 321 | + <plugins> |
| 322 | + <plugin> |
| 323 | + <groupId>org.apache.maven.plugins</groupId> |
| 324 | + <artifactId>maven-gpg-plugin</artifactId> |
| 325 | + <executions> |
| 326 | + <execution> |
| 327 | + <id>sign-artifacts</id> |
| 328 | + <phase>verify</phase> |
| 329 | + <goals> |
| 330 | + <goal>sign</goal> |
| 331 | + </goals> |
| 332 | + </execution> |
| 333 | + </executions> |
| 334 | + </plugin> |
| 335 | + </plugins> |
| 336 | + </build> |
| 337 | + </profile> |
| 338 | + |
| 339 | + <profile> |
| 340 | + <id>release</id> |
| 341 | + <build> |
| 342 | + <plugins> |
| 343 | + <plugin> |
| 344 | + <artifactId>maven-source-plugin</artifactId> |
| 345 | + <executions> |
| 346 | + <execution> |
| 347 | + <id>attach-sources</id> |
| 348 | + <goals> |
| 349 | + <goal>jar-no-fork</goal> |
| 350 | + </goals> |
| 351 | + </execution> |
| 352 | + </executions> |
| 353 | + </plugin> |
| 354 | + <plugin> |
| 355 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 356 | + <executions> |
| 357 | + <execution> |
| 358 | + <id>attach-javadocs</id> |
| 359 | + <goals> |
| 360 | + <goal>jar</goal> |
| 361 | + </goals> |
| 362 | + </execution> |
| 363 | + </executions> |
| 364 | + </plugin> |
| 365 | + <plugin> |
| 366 | + <groupId>org.apache.maven.plugins</groupId> |
| 367 | + <artifactId>maven-gpg-plugin</artifactId> |
| 368 | + <executions> |
| 369 | + <execution> |
| 370 | + <id>sign-artifacts</id> |
| 371 | + <phase>verify</phase> |
| 372 | + <goals> |
| 373 | + <goal>sign</goal> |
| 374 | + </goals> |
| 375 | + <configuration> |
| 376 | + <gpgArguments> |
| 377 | + <arg>--pinentry-mode</arg> |
| 378 | + <arg>loopback</arg> |
| 379 | + </gpgArguments> |
| 380 | + </configuration> |
| 381 | + </execution> |
| 382 | + </executions> |
| 383 | + </plugin> |
| 384 | + <plugin> |
| 385 | + <groupId>org.sonatype.central</groupId> |
| 386 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 387 | + <extensions>true</extensions> |
| 388 | + <configuration> |
| 389 | + <publishingServerId>central</publishingServerId> |
| 390 | + <autoPublish>${release.autopublish}</autoPublish> |
| 391 | + <waitUntil>validated</waitUntil> |
| 392 | + </configuration> |
| 393 | + </plugin> |
| 394 | + </plugins> |
| 395 | + </build> |
| 396 | + </profile> |
| 397 | + </profiles> |
| 398 | + |
| 399 | + <scm> |
| 400 | + <connection>scm:git:https://github.com/scylladb/kafka-connect-scylladb</connection> |
| 401 | + <developerConnection>scm:git:https://github.com/scylladb/kafka-connect-scylladb</developerConnection> |
| 402 | + <url>https://github.com/scylladb/kafka-connect-scylladb</url> |
| 403 | + <tag>HEAD</tag> |
| 404 | + </scm> |
| 405 | + |
| 406 | + <licenses> |
| 407 | + <license> |
| 408 | + <name>Apache 2</name> |
| 409 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 410 | + <distribution>repo</distribution> |
| 411 | + <comments>Apache License Version 2.0</comments> |
| 412 | + </license> |
| 413 | + </licenses> |
| 414 | + |
| 415 | + <distributionManagement> |
| 416 | + <snapshotRepository> |
| 417 | + <id>central</id> |
| 418 | + <url>https://central.sonatype.com/repository/maven-snapshots</url> |
| 419 | + </snapshotRepository> |
| 420 | + <repository> |
| 421 | + <id>central</id> |
| 422 | + <url>https://central.sonatype.com/repository/maven-releases</url> |
| 423 | + </repository> |
| 424 | + </distributionManagement> |
| 425 | + |
| 426 | + <developers> |
| 427 | + <developer> |
| 428 | + <name>Various</name> |
| 429 | + <organization>ScyllaDB</organization> |
| 430 | + </developer> |
| 431 | + </developers> |
319 | 432 | </project> |
0 commit comments