barcodelib4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.vwsoft</groupId>
<artifactId>barcodelib4j</artifactId>
<version>3.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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.vwsoft</groupId>
<artifactId>barcodelib4j</artifactId>
<version>3.1.1</version>
<packaging>jar</packaging>
<name>Barcode-Lib4J</name>
<description>Barcode generation library for Java. Supports QR Code, DataMatrix, GS1-128, EAN, ITF and other 1D/2D barcodes. Renders to Graphics2D or exports barcodes as vector (SVG, PDF, EPS) or raster images (PNG, BMP, JPEG).</description>
<url>https://www.vw-software.com/java-barcode-library/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Viktor Wedel</name>
<organization>VW Software</organization>
<organizationUrl>https://www.vw-software.com/</organizationUrl>
<url>https://github.com/vws-java/</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/vws-java/Barcode-Lib4J.git</connection>
<developerConnection>scm:git:https://github.com/vws-java/Barcode-Lib4J.git</developerConnection>
<url>https://github.com/vws-java/Barcode-Lib4J</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<!-- Maven Central Plugins and Configuration -->
<build>
<plugins>
<!-- Maven Compiler Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<!-- Maven Source Plugin (required for Maven Central) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven JAR Plugin to package javadoc from docs directory -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>${project.basedir}/docs</classesDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Profile for release signing (activate only when publishing) -->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- GPG Plugin for signing artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Central Publishing Plugin for Sonatype Central -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- Distribution Management for Sonatype Central -->
<distributionManagement>
<repository>
<id>central</id>
<url>https://central.sonatype.com/api/v1/publisher</url>
</repository>
</distributionManagement>
</project>