tsplib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.lmores.tsplib</groupId>
<artifactId>tsplib</artifactId>
<version>0.0.3</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>io.github.lmores.tsplib</groupId>
<artifactId>tsplib</artifactId>
<version>0.0.3</version>
<packaging>jar</packaging>
<name>tsplib</name>
<description>Java library for the TSPLIB</description>
<url>https://github.com/lmores/tsplib-java</url>
<licenses>
<license>
<name>GNU Affero General Public License</name>
<url>https://www.gnu.org/licenses/agpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Lorenzo Moreschini</name>
<email>lor.moreschini@gmail.com</email>
<!-- <organization></organization> -->
<organizationUrl>https://github.com/lmores</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/lmores/tsplib-java.git</connection>
<developerConnection>scm:git:ssh://github.com:lmores/tsplib-java.git</developerConnection>
<url>http://github.com/lmores/tsplib-java</url>
</scm>
<properties>
<!--
${gpg.keyname} must be the last 8 characters of the signature keyid in
hexadecimal format. They can be found using this command
`gpg -!-list-signatures -!-keyid-format 0xshort`
In the output, the line starting with 'sig 3' in the section of the
required gpg key will show the signature short keyid in hexadecimal
format to be passed as ${gpg.keyname} (e.g. 0x3ABDEC12).
-->
<gpg.keyname>0x28BEFA16</gpg.keyname>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<junit.version>5.11.4</junit.version>
<maven.compiler.version>3.13.0</maven.compiler.version>
<maven.failsafe.version>3.5.2</maven.failsafe.version>
<maven.gpg.version>3.2.7</maven.gpg.version>
<maven.jar.version>3.4.2</maven.jar.version>
<maven.javadoc.version>3.11.2</maven.javadoc.version>
<maven.source.version>3.3.1</maven.source.version>
<maven.surefire.version>3.5.2</maven.surefire.version>
<sonatype.publishing.version>0.6.0</sonatype.publishing.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<!-- <enablePreview>true</enablePreview> -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven.failsafe.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven.jar.version}</version>
<configuration>
<archive>
<manifestEntries>
<builtBy>${user.name}</builtBy>
<buildTimestamp>${maven.build.timestamp}</buildTimestamp>
<gitBranch>${git.branch}</gitBranch>
<gitHash>${git.hash}</gitHash>
</manifestEntries>
</archive>
<excludes>
<exclude>io/github/lmores/tsplib/Readme.class</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<configuration>
<author>true</author>
<version>true</version>
<defaultAuthor>Lorenzo Moreschini</defaultAuthor>
<defaultVersion>${project.version}</defaultVersion>
<!--<doclint>all,-missing</doclint>-->
</configuration>
<executions>
<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>
<version>${maven.source.version}</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-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${sonatype.publishing.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
<!--
The content of pluginManagement section is needed to avoid this warning:
"[WARNING] Version not locked for default bindings plugins
[maven-clean-plugin, maven-resources-plugin, maven-install-plugin],
you should define versions in pluginManagement section of your pom.xml or parent"
-->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>