junixsocket-native-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>no.fiken.oss.junixsocket</groupId>
<artifactId>junixsocket-native-common</artifactId>
<version>1.0.2</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>junixsocket-parent</artifactId>
<groupId>no.fiken.oss.junixsocket</groupId>
<version>1.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>junixsocket-native-common</artifactId>
<name>junixsocket-native-common</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>${project.groupId}:junixsocket-native</include>
</includes>
</artifactSet>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.maven-nar</groupId>
<artifactId>nar-maven-plugin</artifactId>
<version>3.5.1</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>x86_64-MacOSX-gpp-jni</id>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>junixsocket-native</artifactId>
<version>${project.version}</version>
<type>nar</type>
<classifier>x86_64-MacOSX-gpp-jni</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>amd64-Linux-gpp-jni</id>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>junixsocket-native</artifactId>
<version>${project.version}</version>
<type>nar</type>
<classifier>amd64-Linux-gpp-jni</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>release</id>
<dependencies>
<dependency>
<groupId>no.fiken.oss.junixsocket</groupId>
<artifactId>junixsocket-native</artifactId>
<version>1.0.2</version>
<type>nar</type>
<classifier>x86_64-MacOSX-gpp-jni</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>no.fiken.oss.junixsocket</groupId>
<artifactId>junixsocket-native</artifactId>
<version>1.0.2</version>
<type>nar</type>
<classifier>amd64-Linux-gpp-jni</classifier>
<scope>compile</scope>
</dependency>
</dependencies>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>no.fiken.oss.junixsocket</groupId>
<artifactId>junixsocket-common</artifactId>
<version>1.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>native-lib-loader</artifactId>
<version>2.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<kohlschutter.project.base.directory>${project.parent.basedir}</kohlschutter.project.base.directory>
</properties>
</project>