sym
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.methylene</groupId>
<artifactId>sym</artifactId>
<version>2.0.3</version>
</dependency><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>com.github.methylene</groupId>
<artifactId>sym</artifactId>
<version>2.0.3</version>
<packaging>jar</packaging>
<name>sym</name>
<description>
Permutations
</description>
<url>https://github.com/methylene/sym</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<surefire.excluded.tests>**/PerformanceTest.java</surefire.excluded.tests>
<surefire.fork.count>1</surefire.fork.count>
<surefire.reuse.forks>true</surefire.reuse.forks>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/methylene/sym.git</url>
</scm>
<developers>
<developer>
<name>Lars Bohl</name>
<email>larsbohl@gmail.com</email>
<organization>github</organization>
<organizationUrl>https://github.com</organizationUrl>
</developer>
</developers>
<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.4</version>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showWarnings>true</showWarnings>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<excludes>
<exclude>${surefire.excluded.tests}</exclude>
</excludes>
<forkCount>${surefire.fork.count}</forkCount>
<reuseForks>${surefire.reuse.forks}</reuseForks>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>bench</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<surefire.fork.count>1</surefire.fork.count>
<surefire.reuse.forks>false</surefire.reuse.forks>
<surefire.excluded.tests>0</surefire.excluded.tests>
</properties>
</profile>
</profiles>
</project>