|
68 | 68 | <argLine /> |
69 | 69 | </properties> |
70 | 70 |
|
71 | | - <repositories> |
72 | | - <repository> |
73 | | - <id>sonatype</id> |
74 | | - <url>https://oss.sonatype.org/content/groups/public</url> |
75 | | - <releases> |
76 | | - <enabled>true</enabled> |
77 | | - </releases> |
78 | | - <snapshots> |
79 | | - <enabled>false</enabled> |
80 | | - </snapshots> |
81 | | - </repository> |
82 | | - <repository> |
83 | | - <id>sonatype-snapshots</id> |
84 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
85 | | - <releases> |
86 | | - <enabled>false</enabled> |
87 | | - </releases> |
88 | | - <snapshots> |
89 | | - <enabled>true</enabled> |
90 | | - </snapshots> |
91 | | - </repository> |
92 | | - </repositories> |
93 | | - |
94 | | - <distributionManagement> |
95 | | - <repository> |
96 | | - <id>sonatype.release</id> |
97 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
98 | | - </repository> |
99 | | - <snapshotRepository> |
100 | | - <id>sonatype.snapshots</id> |
101 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
102 | | - </snapshotRepository> |
103 | | - </distributionManagement> |
104 | | - |
105 | 71 | <dependencies> |
106 | 72 | <dependency> |
107 | 73 | <groupId>io.debezium</groupId> |
|
418 | 384 | </execution> |
419 | 385 | </executions> |
420 | 386 | </plugin> |
421 | | - |
422 | | - <plugin> |
423 | | - <groupId>org.apache.maven.plugins</groupId> |
424 | | - <artifactId>maven-release-plugin</artifactId> |
425 | | - <version>2.5.3</version> |
426 | | - <configuration> |
427 | | - <tag>v${releaseVersion}</tag> |
428 | | - <tagNameFormat>v@{project.version}</tagNameFormat> |
429 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
430 | | - <!-- releaseProfiles configuration will actually force a Maven profile |
431 | | - – the `releases` profile – to become active during the Release process. --> |
432 | | - <releaseProfiles>releases</releaseProfiles> |
433 | | - </configuration> |
434 | | - </plugin> |
435 | | - |
436 | 387 | <plugin> |
437 | | - <groupId>org.sonatype.plugins</groupId> |
438 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
439 | | - <version>1.6.14</version> |
| 388 | + <groupId>org.sonatype.central</groupId> |
| 389 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 390 | + <version>0.8.0</version> |
440 | 391 | <extensions>true</extensions> |
441 | 392 | <configuration> |
442 | | - <nexusUrl>https://oss.sonatype.org</nexusUrl> |
443 | | - <serverId>sonatype.release</serverId> |
| 393 | + <publishingServerId>sonatype.release</publishingServerId> |
| 394 | + <autoPublish>false</autoPublish> |
| 395 | + <ignorePublishedComponents>true</ignorePublishedComponents> |
444 | 396 | </configuration> |
445 | 397 | </plugin> |
446 | 398 | </plugins> |
|
0 commit comments