|
1 | | -<?xml version="1.0" encoding="utf-8"?> |
2 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 4 | <modelVersion>4.0.0</modelVersion> |
6 | 5 | <groupId>us.fatehi</groupId> |
7 | 6 | <artifactId>magnetictrackparser</artifactId> |
8 | | - <version>4.0.4</version> |
| 7 | + <version>4.0.5</version> |
9 | 8 | <packaging>jar</packaging> |
10 | 9 | <name>Magnetic Track Parser</name> |
11 | 10 | <description>Magnetic Track Parser is a library that can parse magnetic tracks from a |
|
58 | 57 | <dependency> |
59 | 58 | <groupId>us.fatehi</groupId> |
60 | 59 | <artifactId>creditcardnumber</artifactId> |
61 | | - <version>4.0.4</version> |
| 60 | + <version>4.0.5</version> |
62 | 61 | </dependency> |
63 | 62 |
|
64 | 63 | <dependency> |
|
190 | 189 | <artifactId>maven-source-plugin</artifactId> |
191 | 190 | <executions> |
192 | 191 | <execution> |
| 192 | + <id>attach-sources</id> |
193 | 193 | <goals> |
194 | 194 | <goal>jar-no-fork</goal> |
195 | 195 | </goals> |
|
218 | 218 | <additionalOptions> |
219 | 219 | <additionalOption>-Xdoclint:none</additionalOption> |
220 | 220 | </additionalOptions> |
221 | | - <bottom>Copyright © 2014-2024 {organizationName}. All |
| 221 | + <bottom>Copyright © 2014-2025 {organizationName}. All |
222 | 222 | rights reserved.</bottom> |
223 | | - <doctitle>Credit Card Number ${project.version}</doctitle> |
| 223 | + <doctitle>${project.name} ${project.version}</doctitle> |
224 | 224 | </configuration> |
225 | 225 | </execution> |
226 | 226 | </executions> |
|
265 | 265 | </execution> |
266 | 266 | </executions> |
267 | 267 | </plugin> |
| 268 | + <plugin> |
| 269 | + <groupId>org.apache.maven.plugins</groupId> |
| 270 | + <artifactId>maven-deploy-plugin</artifactId> |
| 271 | + </plugin> |
268 | 272 | <plugin> |
269 | 273 | <groupId>org.sonatype.plugins</groupId> |
270 | 274 | <artifactId>nexus-staging-maven-plugin</artifactId> |
271 | 275 | <extensions>true</extensions> |
272 | 276 | <configuration> |
273 | 277 | <serverId>sonatype-nexus</serverId> |
274 | | - <nexusUrl>https://oss.sonatype.org</nexusUrl> |
| 278 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
275 | 279 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 280 | + <keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure> |
| 281 | + <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> |
| 282 | + <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> |
| 283 | + <stagingProgressPauseDurationSeconds>10</stagingProgressPauseDurationSeconds> |
276 | 284 | </configuration> |
277 | 285 | </plugin> |
278 | 286 | </plugins> |
|
0 commit comments