epc-qr
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.muehlencord.epcqr</groupId> <artifactId>epc-qr</artifactId> <version>1.1.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2023 Joern Muehlencord, https://muehlencord.de ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. ~ --> <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>de.muehlencord.epcqr</groupId> <artifactId>epc-qr</artifactId> <version>1.1.3</version> <name>epc-qr</name> <description> The European Payments Council Quick Response Code guidelines define the content of a QR code that can be used to initiate SEPA credit transfer (SCT). </description> <url>https://github.com/jomu78/epc-qr</url> <scm> <connection>scm:git:git@github.com:jomu78/epc-qr.git</connection> <developerConnection>scm:git:git@github.com:jomu78/epc-qr.git</developerConnection> <url>https://github.com/jomu78/epc-qr</url> <tag>v1.1.3</tag> </scm> <ciManagement> <system>Travis</system> <url>https://travis-ci.org/jomu78/epc-qr</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/jomu78/epc-qr/issues</url> </issueManagement> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Joern Muehlencord</name> <email>joern@muehlencord.de</email> </developer> </developers> <distributionManagement> <snapshotRepository> <id>central</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </snapshotRepository> <repository> <id>central</id> <url>https://central.sonatype.com/</url> </repository> </distributionManagement> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <licenses.dir>${project.build.directory}/third-party-licenses</licenses.dir> <!-- managed versions --> <zxing.version>3.5.3</zxing.version> <iban4j.version>3.2.6-RELEASE</iban4j.version> <commons-lang.version>3.18.0</commons-lang.version> <slf4j.version>2.0.17</slf4j.version> <junit-jupiter.version>5.11.4</junit-jupiter.version> <assertj.version>3.26.3</assertj.version> <lombok.version>1.18.38</lombok.version> <!-- plugin versions --> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <license-maven-plugin.version>2.2.0</license-maven-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> <maven-war-plugin.version>3.4.0</maven-war-plugin.version> <maven-release-plugin.version>3.1.1</maven-release-plugin.version> </properties> <dependencies> <!-- generate qr codes --> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>${zxing.version}</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>${zxing.version}</version> </dependency> <!-- tools --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang.version}</version> </dependency> <!-- logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- test --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <!-- dev tools --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <!-- automatically create javadoc archive --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- automatically create source archive --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- automatically create file with all licenses used --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> <executions> <execution> <id>download-licenses</id> <phase>generate-resources</phase> <goals> <goal>download-licenses</goal> <goal>add-third-party</goal> </goals> <configuration> <licensesOutputDirectory>${licenses.dir}</licensesOutputDirectory> <outputDirectory>${licenses.dir}</outputDirectory> <licenseMerges> <licenseMerge>The Apache Software License, Version 2.0|Apache 2|Apache License, Version 2.0|Apache Public License 2.0 </licenseMerge> </licenseMerges> </configuration> </execution> </executions> </plugin> <!-- sign components --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>3448E23404383EEA</keyname> </configuration> </plugin> <!-- deploy to OSSRH Sonatype --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <!-- create war archive --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${maven-war-plugin.version}</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration> </plugin> <!-- automatically create new versions --> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> </project>