<?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>cloudbees-oss-parent</artifactId>
    <groupId>com.cloudbees</groupId>
    <version>2</version>
    <relativePath>../pom.xml/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.cloudbees.util</groupId>
  <artifactId>jnr-unixsocket-nodep</artifactId>
  <name>jnr-unixsocket-nodep</name>
  <version>0.1</version>
  <description>com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded</description>
  <url>https://github.com/cloudbees/jnr-unixsocket-nodep</url>
  <prerequisites>
    <maven>2.2.1</maven>
  </prerequisites>
  <issueManagement />
  <ciManagement />
  <inceptionYear>2012</inceptionYear>
  <developers>
    <developer>
      <name>Stephen Connolly</name>
    </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/cloudbees/jnr-unixsocket-nodep.git</connection>
    <developerConnection>scm:git:git@github.com:cloudbees/jnr-unixsocket-nodep.git</developerConnection>
    <url>http://github.com/cloudbees/jnr-unixsocket-nodep/tree/master/</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <forceCreation>true</forceCreation>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.11</version>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.0</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <createSourcesJar>true</createSourcesJar>
              <relocations>
                <relocation>
                  <pattern>org.objectweb.asm</pattern>
                  <shadedPattern>jnr.ffi.shaded.org.objectweb.asm</shadedPattern>
                </relocation>
              </relocations>
              <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

