iban-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.antonsjava</groupId> <artifactId>iban-parser</artifactId> <version>1.1</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.antonsjava</groupId> <artifactId>iban-parser</artifactId> <version>1.1</version> <packaging>jar</packaging> <name>iban-parser</name> <description>Iban parser and validator</description> <url>https://github.com/antonsjava/iban-parser</url> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/antonsjava/iban-parser</url> <connection>scm:https://github.com/antonsjava/iban-parser.git</connection> <developerConnection>scm:https://github.com/antonsjava/iban-parser.git</developerConnection> </scm> <developers> <developer> <email>antons.java@gmail.com</email> <name>Anton Straka</name> <url>https://github.com/antonsjava</url> <id>antonsjava</id> </developer> </developers> <properties> <additionalparam>-Xdoclint:none</additionalparam> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <additionalparam>-Xdoclint:none</additionalparam> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.antonsjava</groupId> <artifactId>jaul</artifactId> <version>1.40</version> <scope>test</scope> </dependency> </dependencies> <build> </build> <profiles> <profile> <id>release-antonsjava</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <detectJavaApiLink>false</detectJavaApiLink> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>