<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.cinchapi</groupId>
  <artifactId>jarsh</artifactId>
  <version>0.1</version>
  <name>Jarsh</name>
  <description>A gradle plugin that generates an executable shell script that embeds a runnable application jar with all of its dependencies.</description>
  <url>http://cinchapi.org/jarsh</url>
  <licenses>
    <license>
      <name>The MIT License</name>
      <url>http://opensource.org/licenses/MIT</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>jnelson</id>
      <name>Jeff Nelson</name>
    </developer>
  </developers>
  <scm>
    <connection>git@github.com:cinchapi/jarsh.git</connection>
    <developerConnection>git@github.com:cinchapi/jarsh.git</developerConnection>
    <url>git@github.com:cinchapi/jarsh.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>net.nisgits.gradle</groupId>
      <artifactId>gradle-executable-jar-plugin</artifactId>
      <version>1.7.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy-all</artifactId>
      <version>1.8.6</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
