| POM: |
Show
hide
<?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>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.skife.terminal</groupId>
<artifactId>java-progress-bar</artifactId>
<name>progress</name>
<version>0.0.1</version>
<description>A terminal progress bar library for java</description>
<url>http://github.com/brianm/java-progress-bar</url>
<developers>
<developer>
<id>brianm</id>
<name>Brian McCallister</name>
<email>brianm@skife.org</email>
</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:git://github.com/brianm/java-progress-bar.git</connection>
<developerConnection>scm:git:git@github.com:brianm/java-progress-bar.git</developerConnection>
<url>http://github.com/brianm/java-progress-bar/tree/master</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.skife.terminal.App</mainClass>
</transformer>
<transformer>
<resource>.SF</resource>
</transformer>
<transformer>
<resource>.sf</resource>
</transformer>
</transformers>
<artifactSet>
<includes>
<include>org.sonatype.jline:jline</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.fusesource</pattern>
<shadedPattern>org.skife.terminal.fusesource</shadedPattern>
</relocation>
<relocation>
<pattern>jline</pattern>
<shadedPattern>org.skife.terminal.jline</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
|