|
3 | 3 |
|
4 | 4 | <groupId>eu.europa.ted.eforms</groupId> |
5 | 5 | <artifactId>efx-toolkit-java</artifactId> |
6 | | - <version>2.0.0-alpha.4</version> |
| 6 | + <version>2.0.0-alpha.5</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 |
|
9 | 9 | <name>EFX Toolkit for Java</name> |
|
36 | 36 | <url>https://github.com/OP-TED/efx-toolkit-java.git</url> |
37 | 37 | </scm> |
38 | 38 |
|
39 | | - <distributionManagement> |
40 | | - <snapshotRepository> |
41 | | - <id>ossrh</id> |
42 | | - <url>https://${sonatype.server.url}/content/repositories/snapshots</url> |
43 | | - </snapshotRepository> |
44 | | - <repository> |
45 | | - <id>ossrh</id> |
46 | | - <url>https://${sonatype.server.url}/service/local/staging/deploy/maven2/</url> |
47 | | - </repository> |
48 | | - </distributionManagement> |
49 | | - |
50 | 39 | <properties> |
51 | 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
52 | 41 | <project.build.outputTimestamp>2024-08-02T09:53:37Z</project.build.outputTimestamp> |
53 | 42 |
|
54 | | - <sonatype.server.url>s01.oss.sonatype.org</sonatype.server.url> |
55 | | - |
56 | 43 | <maven.compiler.source>11</maven.compiler.source> |
57 | 44 | <maven.compiler.target>11</maven.compiler.target> |
58 | 45 |
|
59 | 46 | <sdk.antlr4.dir>${project.build.directory}/eforms-sdk/antlr4</sdk.antlr4.dir> |
60 | 47 |
|
61 | 48 | <!-- Versions - eForms --> |
62 | | - <version.eforms-core>1.4.0</version.eforms-core> |
| 49 | + <version.eforms-core>1.5.0</version.eforms-core> |
63 | 50 |
|
64 | 51 | <!-- Versions - Third-party libraries --> |
65 | 52 | <version.antlr4>4.13.1</version.antlr4> |
|
78 | 65 | <version.jar.plugin>3.2.0</version.jar.plugin> |
79 | 66 | <version.javadoc.plugin>3.4.0</version.javadoc.plugin> |
80 | 67 | <version.pgp.plugin>1.5</version.pgp.plugin> |
81 | | - <version.nexus-staging.plugin>1.6.7</version.nexus-staging.plugin> |
| 68 | + <version.central-publishing.plugin>0.8.0</version.central-publishing.plugin> |
82 | 69 | <version.source.plugin>3.2.1</version.source.plugin> |
83 | 70 | <version.surefire.plugin>3.2.5</version.surefire.plugin> |
84 | 71 | </properties> |
|
180 | 167 | </dependency> |
181 | 168 | </dependencies> |
182 | 169 |
|
| 170 | + <repositories> |
| 171 | + <repository> |
| 172 | + <id>central-snapshots</id> |
| 173 | + <name>OSS Snapshots repository</name> |
| 174 | + <url>https://central.sonatype.com/repository/maven-snapshots</url> |
| 175 | + <releases> |
| 176 | + <enabled>false</enabled> |
| 177 | + </releases> |
| 178 | + <snapshots> |
| 179 | + <enabled>true</enabled> |
| 180 | + </snapshots> |
| 181 | + </repository> |
| 182 | + </repositories> |
| 183 | + |
183 | 184 | <build> |
184 | 185 | <pluginManagement> |
185 | 186 | <plugins> |
|
230 | 231 | <version>${version.source.plugin}</version> |
231 | 232 | </plugin> |
232 | 233 | <plugin> |
233 | | - <groupId>org.sonatype.plugins</groupId> |
234 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
235 | | - <version>${version.nexus-staging.plugin}</version> |
| 234 | + <groupId>org.sonatype.central</groupId> |
| 235 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 236 | + <version>${version.central-publishing.plugin}</version> |
236 | 237 | </plugin> |
237 | 238 | </plugins> |
238 | 239 | </pluginManagement> |
|
404 | 405 | </configuration> |
405 | 406 | </plugin> |
406 | 407 | <plugin> |
407 | | - <groupId>org.sonatype.plugins</groupId> |
408 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
| 408 | + <groupId>org.sonatype.central</groupId> |
| 409 | + <artifactId>central-publishing-maven-plugin</artifactId> |
409 | 410 | <extensions>true</extensions> |
410 | 411 | <configuration> |
411 | | - <serverId>ossrh</serverId> |
412 | | - <nexusUrl>https://${sonatype.server.url}/</nexusUrl> |
413 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 412 | + <publishingServerId>central</publishingServerId> |
| 413 | + <autoPublish>true</autoPublish> |
| 414 | + <!-- Name displayed on the Central Portal "Deployments" page --> |
| 415 | + <deploymentName>${project.artifactId} ${project.version}</deploymentName> |
414 | 416 | </configuration> |
415 | 417 | </plugin> |
416 | 418 | </plugins> |
|
0 commit comments