io7m-jaux.
Auxiliary library.
Here is the list of declaration for io7m-jaux. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.io7m.jaux</groupId> <artifactId>io7m-jaux</artifactId> <version>2.3.0</version> </dependency>
If you think this Maven repository POM file listing for io7m-jaux is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:ISC License
URL: http://www.opensource.org/licenses/isc-license.txt.
The io7m-jaux-2.3.0 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.10 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1957 |
Testing Coding Style | jsr305 2.0.1 JSR305 Annotations for Findbugs | 166 |
The following plugins are used in the io7m-jaux-2.3.0.jar
The following packages are defined in the io7m-jaux-2.3.0.jar
com.io7m.jaux com.io7m.jaux.functional
Here is the content of the POM file.
<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.io7m.jaux</groupId> <artifactId>io7m-jaux</artifactId> <version>2.3.0</version> <packaging>jar</packaging> <name>io7m-jaux</name> <description>Auxiliary library</description> <url>http://mvn.io7m.com/jaux/</url> <licenses> <license> <name>ISC License</name> <url>http://www.opensource.org/licenses/isc-license.txt</url> </license> </licenses> <scm> <url>http://fossil.io7m.com/repo.cgi/io7m-jaux</url> <connection>scm:http://fossil.io7m.com/repo.cgi/io7m-jaux</connection> <developerConnection>scm:http://fossil.io7m.com/repo.cgi/io7m-jaux</developerConnection> </scm> <issueManagement> <url>http://fossil.io7m.com/repo.cgi/io7m-jaux</url> <system>Fossil</system> </issueManagement> <distributionManagement> <site> <id>io7m</id> <name>io7m.com</name> <url>http://mvn.io7m.com/jaux/</url> </site> </distributionManagement> <prerequisites> <maven>2.2.1</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <version>4.10</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.1</version> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.2</version> </plugin> <plugin> <groupId>org.sonatype.maven.plugin</groupId> <artifactId>emma-maven-plugin</artifactId> <version>1.2</version> </plugin> </plugins> </reporting> <build> <plugins> <!-- Plugin versions --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> </plugin> <!-- Require JDK >= 1.6 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- Produce custom manifest in jar files --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifestEntries> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Specification-Vendor>io7m.com</Specification-Vendor> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor>io7m.com</Implementation-Vendor> <Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id> <Built-By>io7m</Built-By> </manifestEntries> <manifestSection> <name>com/io7m/jaux</name> <manifestEntries> <Sealed>true</Sealed> </manifestEntries> </manifestSection> </archive> </configuration> </plugin> <!-- Create source jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Create javadoc jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Enable code coverage for unit tests --> <plugin> <groupId>org.sonatype.maven.plugin</groupId> <artifactId>emma-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <phase>process-classes</phase> <goals> <goal>instrument</goal> </goals> </execution> </executions> </plugin> <!-- Validate XML documentation --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xml-maven-plugin</artifactId> <version>1.0</version> <executions> <execution> <goals> <goal>validate</goal> </goals> </execution> </executions> <configuration> <validationSets> <validationSet> <dir>src/main/xml</dir> </validationSet> </validationSets> </configuration> </plugin> <!-- Transform XML documentation with Saxon --> <plugin> <groupId>com.io7m.saxon-plugin</groupId> <artifactId>io7m-saxon-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <goals> <goal>transform</goal> </goals> </execution> </executions> <configuration> <transformation> <stylesheetFile>src/main/xsl/structural-1_0_0-standalone-x20.xsl</stylesheetFile> <documentFile>src/main/xml/documentation.xml</documentFile> <outputDirectory>${project.build.directory}/xhtml</outputDirectory> <outputDirectoryParameterName>io7m.structural-1_0_0.output_directory</outputDirectoryParameterName> <outputFile>out.txt</outputFile> </transformation> </configuration> </plugin> <!-- Produce documentation archive --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptors> <descriptor>assembly-doc.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> <!-- Allow deployment over ssh --> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>2.2</version> </extension> </extensions> <!-- Mark certain plugins as ignored in Eclipse. Does not affect the build. --> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.sonatype.maven.plugin</groupId> <artifactId>emma-maven-plugin</artifactId> <versionRange>[1.2,)</versionRange> <goals> <goal>instrument</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>xml-maven-plugin</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>transform</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>com.io7m.saxon-plugin</groupId> <artifactId>io7m-saxon-plugin</artifactId> <versionRange>[1.0.0,)</versionRange> <goals> <goal>transform</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <!-- Sign artifacts when deploying to io7m --> <profiles> <profile> <id>io7m-deployment-private</id> <activation> <property> <name>io7m.deployment</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>