summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Budäus <karsten.budaeus@sbb.ch>2022-06-20 15:18:32 +0200
committerKarsten Budäus <karsten.budaeus@sbb.ch>2022-06-20 15:18:32 +0200
commit6828df6116855fbbeb1170cea1479cfbb5e76c23 (patch)
treedaf4d135983c5abd900af7f4ea4115b148fc3136
parentMerge pull request #50 from UnionInternationalCheminsdeFer/experimental_ElipticCurve_X962_encoding_of_public_keys (diff)
downloadUIC-barcode-6828df6116855fbbeb1170cea1479cfbb5e76c23.tar
UIC-barcode-6828df6116855fbbeb1170cea1479cfbb5e76c23.tar.gz
UIC-barcode-6828df6116855fbbeb1170cea1479cfbb5e76c23.tar.bz2
UIC-barcode-6828df6116855fbbeb1170cea1479cfbb5e76c23.tar.lz
UIC-barcode-6828df6116855fbbeb1170cea1479cfbb5e76c23.tar.xz
UIC-barcode-6828df6116855fbbeb1170cea1479cfbb5e76c23.tar.zst
UIC-barcode-6828df6116855fbbeb1170cea1479cfbb5e76c23.zip
-rw-r--r--pom.xml54
1 files changed, 40 insertions, 14 deletions
diff --git a/pom.xml b/pom.xml
index ffc5360..0f6dd62 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,28 @@
<version>1.3.4</version>
<packaging>jar</packaging>
<name>UIC barcode</name>
- <description>encoding and decoding of bar code content according to UIC IRS 90918-9</description>
+ <description>encoding and decoding of Aztec barcode content according to UIC IRS 90918-9</description>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <dependencies>
+ <!-- test dependencies -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.13.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk15on</artifactId>
+ <version>1.70</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
@@ -30,6 +51,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
+ <version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
@@ -37,20 +59,24 @@
<goal>jar</goal>
</goals>
</execution>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.7.1</version>
+ <configuration>
+ <locales>en_gb</locales>
+ <outputDirectory>${project.build.directory}/site</outputDirectory>
+ <relativizeDecorationLinks>false</relativizeDecorationLinks>
+ </configuration>
+ </plugin>
</plugins>
</build>
@@ -59,7 +85,7 @@
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>