<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <groupId>org.zeromq</groupId>
    <artifactId>jzmq</artifactId>
    <version>3.0.1</version>
    <packaging>jar</packaging>
    <name>jzmq</name>
    <description>
        The 0MQ lightweight messaging kernel is a library which extends the
        standard socket interfaces with features traditionally provided by
        specialised messaging middleware products. 0MQ sockets provide an
        abstraction of asynchronous message queues, multiple messaging
        patterns, message filtering (subscriptions), seamless access to
        multiple transport protocols and more.

        This package contains the Java Bindings for ZeroMQ.
    </description>
    <url>https://zeromq.org/</url>
    <scm>
        <connection>scm:git:git://github.com/zeromq/jzmq.git</connection>
        <developerConnection>scm:git:ssh://git@github.com/zeromq/jzmq.git</developerConnection>
        <url>git://github.com/zeromq/jzmq.git</url>
        <tag>v3.0.1</tag>
    </scm>
    <licenses>
        <license>
            <name>LGPLv3+</name>
            <url>http://www.gnu.org/licenses/lgpl.txt</url>
        </license>
    </licenses>
    <developers>
        <developer>
            <id>zeromq</id>
            <name>The ØMQ project</name>
        </developer>
    </developers>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.6</maven.compiler.target>
        <maven-assembly-plugin.version>2.3</maven-assembly-plugin.version>
        <maven-buildnumber-plugin.version>1.0</maven-buildnumber-plugin.version>
        <maven-deploy-plugin.version>2.6</maven-deploy-plugin.version>
        <maven-jar-plugin.version>2.3.1</maven-jar-plugin.version>
        <maven-javadoc-plugin.version>2.7</maven-javadoc-plugin.version>
        <maven-release-plugin.version>2.3.2</maven-release-plugin.version>
        <maven-scm-plugin.version>1.7</maven-scm-plugin.version>
        <maven-shade-plugin.version>1.4</maven-shade-plugin.version>
        <maven-source-plugin.version>2.1.2</maven-source-plugin.version>
        <junit.version>4.8.2</junit.version>
        <native.arch>${os.arch}</native.arch>
        <native.distro />
        <native.zmq.version />
        <native.path.resolved>${native.path}</native.path.resolved>
        <native.library-path.resolved>${native.library-path}</native.library-path.resolved>
    </properties>
    <profiles>
        <profile>
            <id>Linux</id>
            <activation>
	        <property>
	            <name>os.name</name>
	            <value>Linux</value>
	        </property>
            </activation>
            <properties>
	        <native.os>${os.name}</native.os>
	        <native.path>src/.libs/libjzmq.so</native.path>
	        <!-- Use platform-specific path separators here: -->
	        <native.library-path>src/.libs/</native.library-path>
            </properties>
        </profile>
        <profile>
            <id>Windows</id>
            <activation>
	        <os>
	            <family>windows</family>
	        </os>
            </activation>
            <properties>
	        <native.os>Windows</native.os>
	        <native.path>lib/jzmq.dll</native.path>
	        <!-- Use platform-specific path separators here: -->
	        <native.library-path>lib</native.library-path>
            </properties>
        </profile>
        <profile>
            <id>Mac</id>
            <activation>
	        <os>
	            <family>mac</family>
	        </os>
            </activation>
            <properties>
	        <native.os>${os.name}</native.os>
	        <native.path>src/.libs/libjzmq.dylib</native.path>
	        <!-- Use platform-specific path separators here: -->
	        <native.library-path>src/.libs/</native.library-path>
            </properties>
        </profile>
        <profile>
            <id>os-distro</id>
            <activation>
	        <property>
	            <name>os.distro</name>
	        </property>
            </activation>
            <properties>
                <native.distro>-${os.distro}</native.distro>
            </properties>
        </profile>
        <profile>
            <id>zmq-version</id>
            <activation>
	        <property>
	            <name>zmq.version</name>
	        </property>
            </activation>
            <properties>
                <native.zmq.version>-${zmq.version}</native.zmq.version>
            </properties>
        </profile>
        <profile>
            <id>release</id>
            <properties>
	        <native.path.resolved>..${file.separator}..${file.separator}${native.path}</native.path.resolved>
	        <native.library-path.resolved>..${file.separator}..${file.separator}${native.library-path}</native.library-path.resolved>
            </properties>
        </profile>
        <profile>
            <id>deploy-local-maven</id>
            <distributionManagement>
                <repository>
                    <id>maven.releases</id>
                    <url>${env.RELEASE_REPO}</url>
                </repository>
                <snapshotRepository>
                    <id>maven.snapshots</id>
                    <url>${env.SNAPSHOT_REPO}</url>
                </snapshotRepository>
            </distributionManagement>
        </profile>
    </profiles>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test/src</testSourceDirectory>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
	        <artifactId>maven-assembly-plugin</artifactId>
	        <version>${maven-assembly-plugin.version}</version>
	        <configuration>
	            <descriptors>
	                <!-- Assembly contents are defined in this file -->
	                <descriptor>nativejar.xml</descriptor>
	            </descriptors>
	        </configuration>
	        <executions>
	            <execution>
	                <id>make-assembly</id>
	                <phase>package</phase>
	                <goals>
	                    <goal>single</goal>
	                </goals>
	            </execution>
	        </executions>
            </plugin>
            <plugin>
	        <groupId>org.codehaus.mojo</groupId>
	        <artifactId>buildnumber-maven-plugin</artifactId>
	        <version>${maven-buildnumber-plugin.version}</version>
	        <executions>
	            <execution>
	                <phase>validate</phase>
	                <goals>
	                    <goal>create</goal>
	                </goals>
	            </execution>
	        </executions>
	        <configuration>
	            <doCheck>false</doCheck>
	            <doUpdate>false</doUpdate>
	            <timestampPropertyName>buildTimestamp</timestampPropertyName>
	            <timestampFormat>{0,date,yyyy-MM-dd HH:mm Z}</timestampFormat>
	        </configuration>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-release-plugin</artifactId>
	        <version>${maven-release-plugin.version}</version>
	        <configuration>
	            <localCheckout>true</localCheckout>
	            <pushChanges>false</pushChanges>
	            <releaseProfiles>release</releaseProfiles>
	            <tagNameFormat>v@{project.version}</tagNameFormat>
	            <arguments>-Dos.distro=${os.distro} -Dzmq.version=${zmq.version}</arguments>
	        </configuration>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-scm-plugin</artifactId>
	        <version>${maven-scm-plugin.version}</version>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-jar-plugin</artifactId>
	        <version>${maven-jar-plugin.version}</version>
	        <inherited>true</inherited>
	        <configuration>
	            <archive>                   
	                <manifest>
	                    <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
	                </manifest>
	                <manifestEntries>
	                    <Implementation-Version>${buildNumber} ${buildTimestamp}</Implementation-Version>
	                </manifestEntries>
	            </archive>
	        </configuration>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-surefire-plugin</artifactId>
	        <configuration>
	            <forkMode>once</forkMode>
	            <argLine>-Djava.library.path=${native.library-path.resolved}</argLine>
	        </configuration>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-shade-plugin</artifactId>
	        <version>${maven-shade-plugin.version}</version>
	        <executions>
	            <execution>
	                <phase>package</phase>
	                <goals>
	                    <goal>shade</goal>
	                </goals>
	                <configuration>
	                    <transformers>
		                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
		                    <manifestEntries>
		                        <Main-Class>org.zeromq.App</Main-Class>
		                    </manifestEntries>
		                </transformer>
	                    </transformers>
	                </configuration>
	            </execution>
	        </executions>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-deploy-plugin</artifactId>
	        <version>${maven-deploy-plugin.version}</version>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-source-plugin</artifactId>
	        <version>${maven-source-plugin.version}</version>
	        <executions>
	            <execution>
	                <id>attach-sources</id>
	                <goals>
	                    <goal>jar</goal>
	                </goals>
	            </execution>
	        </executions>
            </plugin>
            <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-javadoc-plugin</artifactId>
	        <version>${maven-javadoc-plugin.version}</version>
	        <executions>
	            <execution>
	                <id>attach-javadoc</id>
	                <goals>
	                    <goal>jar</goal>
	                </goals>
	            </execution>
	        </executions>
            </plugin>
        </plugins>
    </build>
</project>
