drombler-iso9660fs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.drombler.iso9660fs</groupId> <artifactId>drombler-iso9660fs</artifactId> <version>0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Notice The contents of this file are subject to the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 (the "License"); you may not use this file except in compliance with the License. A copy of the License is available at http://www.opensource.org/licenses/cddl1.txt The Original Code is Drombler.org. The Initial Developer of the Original Code is Florian Brunner (Sourceforge.net user: puce). Copyright 2012 Drombler.org. All Rights Reserved. Contributor(s): . --> <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> <parent> <groupId>org.drombler</groupId> <artifactId>drombler-oss-parent</artifactId> <version>4.0-SNAPSHOT</version> <relativePath /> </parent> <groupId>org.drombler.iso9660fs</groupId> <artifactId>drombler-iso9660fs</artifactId> <version>0.4</version> <packaging>bundle</packaging> <name>Drombler ISO 9660</name> <description>NIO.2 File API provider for ISO 9660 files.</description> <inceptionYear>2014</inceptionYear> <!-- required for Javadoc (apidocs) linking --> <url>https://www.drombler.org/drombler-commons/${project.version}/docs/site</url> <scm> <connection>${scm.connection}</connection> <developerConnection>${scm.developerConnection}</developerConnection> <url>${scm.url}</url> <tag>HEAD</tag> </scm> <distributionManagement> <site> <id>github</id> <url>${distributionManagement.parent.url}/${project.artifactId}/</url> </site> </distributionManagement> <properties> <scm.connection>${scm.parent.connection}</scm.connection> <scm.developerConnection>${scm.parent.developerConnection}</scm.developerConnection> <scm.url>${scm.parent.url}</scm.url> </properties> <!-- Not inherited!?? --> <prerequisites> <maven>${maven.version}</maven> </prerequisites> <build> <pluginManagement> <plugins> <plugin> <groupId>com.amashchenko.maven.plugin</groupId> <artifactId>gitflow-maven-plugin</artifactId> <version>1.14.0</version> <configuration> <gitFlowConfig> <developmentBranch>master</developmentBranch> <versionTagPrefix>release-</versionTagPrefix> </gitFlowConfig> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> </plugin> </plugins> </build> <dependencies> <!-- <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency>--> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> </project>