file-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.javaswift</groupId>
<artifactId>file-cli</artifactId>
<version>1.4.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
<relativePath>../pom.xml/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.javaswift</groupId>
<artifactId>file-cli</artifactId>
<name>JOSS File CLI</name>
<version>1.4.0</version>
<description>Command Line Interface for uploading files to the ObjectStore</description>
<url>https://github.com/javaswift/joss</url>
<inceptionYear>2012</inceptionYear>
<developers>
<developer>
<name>Robert Bor</name>
<organization>42</organization>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/javaswift/file-cli.git</connection>
<url>scm:git://github.com/javaswift/file-cli.git</url>
</scm>
<organization>
<name>42 BV</name>
<url>http://blog.42.nl/</url>
</organization>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven-shade-plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<manifestEntries>
<Main-Class>org.javaswift.filecli.Main</Main-Class>
</manifestEntries>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${maven.cobertura.version}</version>
<configuration>
<instrumentation>
<excludes>
<exclude>org/javaswift/*.class</exclude>
</excludes>
</instrumentation>
<check />
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.10</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${maven.cobertura.version}</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
</plugin>
</plugins>
</reporting>
<properties>
<junit.version>4.10</junit.version>
<maven-shade-plugin.version>2.1</maven-shade-plugin.version>
<spark-core.version>1.0</spark-core.version>
<maven.cobertura.version>2.5.2</maven.cobertura.version>
<maven.javadoc.version>2.8</maven.javadoc.version>
<jcommander.version>1.30</jcommander.version>
<freemarker.version>2.3.19</freemarker.version>
<maven.site.plugin.version>3.3</maven.site.plugin.version>
<maven.project.version>2.7</maven.project.version>
<slf4j-simple.version>1.7.2</slf4j-simple.version>
<joss.version>0.9.3</joss.version>
</properties>
</project>