zippy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>eu.ioservices</groupId>
<artifactId>zippy</artifactId>
<version>0.5.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>
<groupId>eu.ioservices</groupId>
<artifactId>zippy</artifactId>
<version>0.5.1</version>
<packaging>pom</packaging>
<url>https://github.com/wingsofovnia/zippy</url>
<name>Zippy</name>
<description>A simple zip tool for compressing data, decompressing and building zip files.</description>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>iovchynnikov</id>
<name>Illia Ovchynnikov</name>
<email>illia.ovchynnikov@gmail.com</email>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
<timezone>+2</timezone>
</developer>
</developers>
<scm>
<url>https://github.com/wingsofovnia/zippy</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<!-- Maven and JAVAC depended properties -->
<project.build.jdk.version>1.7</project.build.jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>${project.build.jdk.version}</maven.compiler.target>
<maven.compiler.source>${project.build.jdk.version}</maven.compiler.source>
<maven.compiler.testTarget>${project.build.jdk.version}</maven.compiler.testTarget>
<maven.compiler.testSource>${project.build.jdk.version}</maven.compiler.testSource>
<!-- Dependencies versions -->
<dep.junit.version>4.12</dep.junit.version>
<!-- Plugins versions -->
<plg.source-plugin.version>2.2.1</plg.source-plugin.version>
<plg.javadoc-plugin.version>2.9.1</plg.javadoc-plugin.version>
<plg.gpg-plugin.version>1.5</plg.gpg-plugin.version>
<plg.sonatype.staging-plugin.version>1.6.3</plg.sonatype.staging-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${dep.junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${plg.sonatype.staging-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plg.source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plg.javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${plg.gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>