permutation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ch.sbs.preptools</groupId>
<artifactId>permutation</artifactId>
<version>1.7</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>ch.sbs.preptools</groupId>
<artifactId>permutation</artifactId>
<version>1.7</version>
<name>permutation</name>
<description>Implements generic permutation according to Kenneth H. Rosen, Discrete Mathematics
and Its Applications, 2nd edition (NY: McGraw-Hill, 1991), pp. 282-284.</description>
<url>https://github.com/sbsdev/permutation</url>
<scm>
<connection>scm:git:git://github.com/sbsdev/permutation.git</connection>
<developerConnection>scm:git:git@github.com:sbsdev/permutation.git</developerConnection>
<url>https://github.com/sbsdev/permutation/tree/master</url>
<tag>v1.7</tag>
</scm>
<licenses>
<license>
<name>GNU General Public License, Version 3</name>
<url>http://www.gnu.org/copyleft/gpl.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Christian Egli</name>
<email>christian.egli@sbs.ch</email>
<organization>Swiss Library for the Blind, Visually Impaired and Print Disabled</organization>
<organizationUrl>http://www.sbs.ch/</organizationUrl>
</developer>
<developer>
<name>Bernhard Wagner</name>
<email>web@bernhardwagner.net</email>
<organizationUrl>http://github.com/bwagner</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>
<tagNameFormat>v@{project.version}</tagNameFormat>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.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.11.2</version>
<configuration>
<javadocExecutable>/usr/bin/javadoc</javadocExecutable>
</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>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</project>