|
5 | 5 | <groupId>io.kafka.connect</groupId> |
6 | 6 | <artifactId>kafka-connect-scylladb</artifactId> |
7 | 7 | <name>kafka-connect-scylladb</name> |
8 | | - <version>1.1.1</version> |
| 8 | + <version>1.1.2-SNAPSHOT</version> |
9 | 9 | <description>A Kafka Connect plugin for Scylla Database</description> |
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> |
|
32 | 24 | <!-- transitive dependency versions --> |
33 | 25 | <jackson-databind.version>2.13.4.2</jackson-databind.version> |
34 | 26 | <guava.version>24.1.1-jre</guava.version> |
35 | | - |
| 27 | + <gpg.passphrase/> |
| 28 | + <release.autopublish>false</release.autopublish> |
36 | 29 | </properties> |
37 | 30 |
|
38 | 31 | <build> |
|
180 | 173 | </execution> |
181 | 174 | </executions> |
182 | 175 | </plugin> |
| 176 | + <plugin> |
| 177 | + <artifactId>maven-release-plugin</artifactId> |
| 178 | + <configuration> |
| 179 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 180 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 181 | + <releaseProfiles>release</releaseProfiles> |
| 182 | + <useReleaseProfile>false</useReleaseProfile> |
| 183 | + <localCheckout>true</localCheckout> |
| 184 | + <pushChanges>false</pushChanges> |
| 185 | + <arguments>-Dgpg.passphrase=${gpg.passphrase} -Drelease.autopublish=${release.autopublish}</arguments> |
| 186 | + </configuration> |
| 187 | + <dependencies> |
| 188 | + <dependency> |
| 189 | + <groupId>org.apache.maven.scm</groupId> |
| 190 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 191 | + <version>2.1.0</version> |
| 192 | + </dependency> |
| 193 | + </dependencies> |
| 194 | + </plugin> |
183 | 195 | </plugins> |
184 | 196 | <resources> |
185 | 197 | <!-- Apply the properties set in the POM to the resource files --> |
|
316 | 328 |
|
317 | 329 | </dependencies> |
318 | 330 |
|
| 331 | + <profiles> |
| 332 | + <profile> |
| 333 | + <id>release-sign-artifacts</id> |
| 334 | + <activation> |
| 335 | + <property> |
| 336 | + <name>performRelease</name> |
| 337 | + <value>true</value> |
| 338 | + </property> |
| 339 | + </activation> |
| 340 | + <build> |
| 341 | + <plugins> |
| 342 | + <plugin> |
| 343 | + <groupId>org.apache.maven.plugins</groupId> |
| 344 | + <artifactId>maven-gpg-plugin</artifactId> |
| 345 | + <executions> |
| 346 | + <execution> |
| 347 | + <id>sign-artifacts</id> |
| 348 | + <phase>verify</phase> |
| 349 | + <goals> |
| 350 | + <goal>sign</goal> |
| 351 | + </goals> |
| 352 | + </execution> |
| 353 | + </executions> |
| 354 | + </plugin> |
| 355 | + </plugins> |
| 356 | + </build> |
| 357 | + </profile> |
| 358 | + |
| 359 | + <profile> |
| 360 | + <id>release</id> |
| 361 | + <build> |
| 362 | + <plugins> |
| 363 | + <plugin> |
| 364 | + <artifactId>maven-source-plugin</artifactId> |
| 365 | + <executions> |
| 366 | + <execution> |
| 367 | + <id>attach-sources</id> |
| 368 | + <goals> |
| 369 | + <goal>jar-no-fork</goal> |
| 370 | + </goals> |
| 371 | + </execution> |
| 372 | + </executions> |
| 373 | + </plugin> |
| 374 | + <plugin> |
| 375 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 376 | + <executions> |
| 377 | + <execution> |
| 378 | + <id>attach-javadocs</id> |
| 379 | + <goals> |
| 380 | + <goal>jar</goal> |
| 381 | + </goals> |
| 382 | + </execution> |
| 383 | + </executions> |
| 384 | + </plugin> |
| 385 | + <plugin> |
| 386 | + <groupId>org.apache.maven.plugins</groupId> |
| 387 | + <artifactId>maven-gpg-plugin</artifactId> |
| 388 | + <executions> |
| 389 | + <execution> |
| 390 | + <id>sign-artifacts</id> |
| 391 | + <phase>verify</phase> |
| 392 | + <goals> |
| 393 | + <goal>sign</goal> |
| 394 | + </goals> |
| 395 | + <configuration> |
| 396 | + <gpgArguments> |
| 397 | + <arg>--pinentry-mode</arg> |
| 398 | + <arg>loopback</arg> |
| 399 | + </gpgArguments> |
| 400 | + </configuration> |
| 401 | + </execution> |
| 402 | + </executions> |
| 403 | + </plugin> |
| 404 | + <plugin> |
| 405 | + <groupId>org.sonatype.central</groupId> |
| 406 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 407 | + <extensions>true</extensions> |
| 408 | + <configuration> |
| 409 | + <publishingServerId>central</publishingServerId> |
| 410 | + <autoPublish>${release.autopublish}</autoPublish> |
| 411 | + <waitUntil>validated</waitUntil> |
| 412 | + </configuration> |
| 413 | + </plugin> |
| 414 | + </plugins> |
| 415 | + </build> |
| 416 | + </profile> |
| 417 | + </profiles> |
| 418 | + |
| 419 | + <scm> |
| 420 | + <connection>scm:git:https://github.com/scylladb/kafka-connect-scylladb</connection> |
| 421 | + <developerConnection>scm:git:https://github.com/scylladb/kafka-connect-scylladb</developerConnection> |
| 422 | + <url>https://github.com/scylladb/kafka-connect-scylladb</url> |
| 423 | + <tag>HEAD</tag> |
| 424 | + </scm> |
| 425 | + |
| 426 | + <licenses> |
| 427 | + <license> |
| 428 | + <name>Apache 2</name> |
| 429 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 430 | + <distribution>repo</distribution> |
| 431 | + <comments>Apache License Version 2.0</comments> |
| 432 | + </license> |
| 433 | + </licenses> |
| 434 | + |
| 435 | + <distributionManagement> |
| 436 | + <snapshotRepository> |
| 437 | + <id>central</id> |
| 438 | + <url>https://central.sonatype.com/repository/maven-snapshots</url> |
| 439 | + </snapshotRepository> |
| 440 | + <repository> |
| 441 | + <id>central</id> |
| 442 | + <url>https://central.sonatype.com/repository/maven-releases</url> |
| 443 | + </repository> |
| 444 | + </distributionManagement> |
| 445 | + |
| 446 | + <developers> |
| 447 | + <developer> |
| 448 | + <name>Various</name> |
| 449 | + <organization>ScyllaDB</organization> |
| 450 | + </developer> |
| 451 | + </developers> |
319 | 452 | </project> |
0 commit comments