|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 | <groupId>com.amazonaws</groupId>
|
6 | 6 | <artifactId>aws-lambda-java-runtime-interface-client</artifactId>
|
7 |
| - <version>2.7.1</version> |
| 7 | + <version>2.8.4</version> |
8 | 8 | <packaging>jar</packaging>
|
9 | 9 |
|
10 | 10 | <name>AWS Lambda Java Runtime Interface Client</name>
|
|
365 | 365 | </executions>
|
366 | 366 | </plugin>
|
367 | 367 | <plugin>
|
368 |
| - <groupId>org.sonatype.plugins</groupId> |
369 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
370 |
| - <version>1.6.3</version> |
| 368 | + <groupId>org.sonatype.central</groupId> |
| 369 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 370 | + <version>0.8.0</version> |
371 | 371 | <extensions>true</extensions>
|
372 | 372 | <configuration>
|
373 |
| - <serverId>sonatype-nexus-staging</serverId> |
374 |
| - <nexusUrl>https://aws.oss.sonatype.org/</nexusUrl> |
375 |
| - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 373 | + <publishingServerId>central</publishingServerId> |
376 | 374 | </configuration>
|
377 | 375 | </plugin>
|
| 376 | + <plugin> |
| 377 | + <groupId>org.codehaus.mojo</groupId> |
| 378 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 379 | + <version>3.4.0</version> |
| 380 | + <executions> |
| 381 | + <execution> |
| 382 | + <id>attach-platform-artifacts</id> |
| 383 | + <phase>package</phase> |
| 384 | + <goals> |
| 385 | + <goal>attach-artifact</goal> |
| 386 | + </goals> |
| 387 | + <configuration> |
| 388 | + <artifacts> |
| 389 | + <artifact> |
| 390 | + <file>${project.build.directory}/${project.build.finalName}-linux-x86_64.jar</file> |
| 391 | + <type>jar</type> |
| 392 | + <classifier>linux-x86_64</classifier> |
| 393 | + </artifact> |
| 394 | + <artifact> |
| 395 | + <file>${project.build.directory}/${project.build.finalName}-linux-aarch_64.jar</file> |
| 396 | + <type>jar</type> |
| 397 | + <classifier>linux-aarch_64</classifier> |
| 398 | + </artifact> |
| 399 | + <artifact> |
| 400 | + <file>${project.build.directory}/${project.build.finalName}-linux_musl-x86_64.jar</file> |
| 401 | + <type>jar</type> |
| 402 | + <classifier>linux_musl-x86_64</classifier> |
| 403 | + </artifact> |
| 404 | + <artifact> |
| 405 | + <file>${project.build.directory}/${project.build.finalName}-linux_musl-aarch_64.jar</file> |
| 406 | + <type>jar</type> |
| 407 | + <classifier>linux_musl-aarch_64</classifier> |
| 408 | + </artifact> |
| 409 | + </artifacts> |
| 410 | + </configuration> |
| 411 | + </execution> |
| 412 | + </executions> |
| 413 | + </plugin> |
378 | 414 | </plugins>
|
379 | 415 | </build>
|
380 | 416 | </profile>
|
|
0 commit comments