zipunit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.born2snipe</groupId> <artifactId>zipunit</artifactId> <version>0.1</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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>com.github.born2snipe</groupId> <artifactId>zipunit</artifactId> <version>0.1</version> <packaging>jar</packaging> <name>zipunit</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>-Psonatype-oss-release -D=gpg.keyname=${env.MAVEN_PGP_KEYNAME} -Dgpg.passphrase=${env.MAVEN_PGP_PASSPHRASE}</arguments> </configuration> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <strictCheck>true</strictCheck> <basedir>${basedir}</basedir> <header>${basedir}/LICENSE.txt</header> <quiet>false</quiet> <failIfMissing>true</failIfMissing> <aggregate>false</aggregate> <includes> <include>src/**</include> <include>**/test/**</include> </includes> <excludes> <exclude>**/test/resources/**</exclude> </excludes> <useDefaultExcludes>true</useDefaultExcludes> <useDefaultMapping>true</useDefaultMapping> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <phase>process-resources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <connection>scm:git:git@github.com:born2snipe/zipunit.git</connection> <developerConnection>scm:git:git@github.com:born2snipe/zipunit.git</developerConnection> <url>git@github.com:born2snipe/zipunit.git</url> </scm> <description>This is a simple Java API for testing Zip/Jar files</description> <url>https://github.com/born2snipe/zipunit</url> <developers> <developer> <name>Dan Dudley</name> <email>born2snipe@gmail.com</email> <organization /> <organizationUrl>https://github.com/born2snipe</organizationUrl> </developer> </developers> </project>