|
11 | 11 |
|
12 | 12 | <artifactId>biosdk-client</artifactId> |
13 | 13 | <groupId>io.mosip.biosdk</groupId> |
14 | | - <version>1.2.0.1</version> |
| 14 | + <version>1.2.0.2-SNAPSHOT</version> |
15 | 15 | <name>biosdk-client</name> |
16 | 16 |
|
17 | 17 | <description>Sample implementation of biometrics SDK client</description> |
|
33 | 33 | </developer> |
34 | 34 | </developers> |
35 | 35 |
|
| 36 | + <repositories> |
| 37 | + <repository> |
| 38 | + <id>ossrh</id> |
| 39 | + <name>MavenCentralRepository</name> |
| 40 | + <url>https://central.sonatype.com/repository/maven-snapshots</url> |
| 41 | + <layout>default</layout> |
| 42 | + <snapshots> |
| 43 | + <enabled>true</enabled> |
| 44 | + </snapshots> |
| 45 | + </repository> |
| 46 | + <repository> |
| 47 | + <id>central</id> |
| 48 | + <name>MavenCentral</name> |
| 49 | + <layout>default</layout> |
| 50 | + <url>https://repo1.maven.org/maven2</url> |
| 51 | + <snapshots> |
| 52 | + <enabled>false</enabled> |
| 53 | + </snapshots> |
| 54 | + </repository> |
| 55 | + </repositories> |
| 56 | + |
36 | 57 | <distributionManagement> |
37 | 58 | <snapshotRepository> |
38 | 59 | <id>ossrh</id> |
39 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 60 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
40 | 61 | </snapshotRepository> |
41 | 62 | <repository> |
42 | 63 | <id>ossrh</id> |
43 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 64 | + <url>https://central.sonatype.com/api/v1/publisher</url> |
44 | 65 | </repository> |
45 | 66 | </distributionManagement> |
46 | 67 |
|
|
55 | 76 | <maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version> |
56 | 77 | <maven.jacoco.plugin.version>0.8.5</maven.jacoco.plugin.version> |
57 | 78 | <maven.sonar.plugin.version>3.7.0.1746</maven.sonar.plugin.version> |
| 79 | + <central.publishing.maven.plugin.version>0.7.0</central.publishing.maven.plugin.version> |
58 | 80 | <jackson.version>2.19.0</jackson.version> |
59 | 81 | <!-- Lombok --> |
60 | 82 | <lombok.version>1.18.8</lombok.version> |
|
259 | 281 | </executions> |
260 | 282 | </plugin> |
261 | 283 | <plugin> |
262 | | - <groupId>org.sonatype.plugins</groupId> |
263 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
264 | | - <version>1.6.7</version> |
| 284 | + <groupId>org.sonatype.central</groupId> |
| 285 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 286 | + <version>${central.publishing.maven.plugin.version}</version> |
265 | 287 | <extensions>true</extensions> |
266 | | - <executions> |
267 | | - <execution> |
268 | | - <id>default-deploy</id> |
269 | | - <phase>deploy</phase> |
270 | | - <goals> |
271 | | - <goal>deploy</goal> |
272 | | - </goals> |
273 | | - </execution> |
274 | | - </executions> |
275 | 288 | <configuration> |
276 | | - <serverId>ossrh</serverId> |
277 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
278 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 289 | + <publishingServerId>ossrh</publishingServerId> |
| 290 | + <autoPublish>false</autoPublish> |
279 | 291 | </configuration> |
280 | 292 | </plugin> |
281 | 293 | <plugin> |
|
0 commit comments