io7m-junsigned-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.io7m.junsigned</groupId> <artifactId>io7m-junsigned-core</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <parent> <groupId>com.io7m.junsigned</groupId> <artifactId>io7m-junsigned</artifactId> <version>1.0.0</version> </parent> <artifactId>io7m-junsigned-core</artifactId> <packaging>bundle</packaging> <name>io7m-junsigned-core</name> <description>Unsigned conversions (Core)</description> <url>http://io7m.github.io/junsigned/</url> <scm> <url>${project.parent.scm.url}</url> <connection>${project.parent.scm.connection}</connection> <developerConnection>${project.parent.scm.developerConnection}</developerConnection> </scm> <dependencies> <dependency> <groupId>com.io7m.jnull</groupId> <artifactId>io7m-jnull-core</artifactId> </dependency> <dependency> <groupId>com.io7m.junreachable</groupId> <artifactId>io7m-junreachable-core</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Check style --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <!-- Produce OSGi bundle --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package>com.io7m.junsigned.core</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>