audioplayer4j-x86_64-macos
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.tagtraum</groupId>
<artifactId>audioplayer4j-x86_64-macos</artifactId>
<version>0.9.4</version>
</dependency><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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.tagtraum</groupId>
<artifactId>audioplayer4j</artifactId>
<version>0.9.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>audioplayer4j-x86_64-macos</artifactId>
<packaging>dylib</packaging>
<name>audioplayer4j Native macOS Library (x86_64)</name>
<properties>
<arch>x86_64</arch>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>native-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<compilerProvider>generic</compilerProvider>
<compilerStartOptions>
<compilerStartOption>${compiler.startoptions}</compilerStartOption>
</compilerStartOptions>
<javahOS>${headers.os}</javahOS>
<jdkIncludePath>${headers.jni}</jdkIncludePath>
<sources>
<source>
<directory>src/main/c</directory>
<includes>
<include>*.m</include>
</includes>
</source>
<!-- additional include path -->
<source>
<directory>../audioplayer4j-java/target/native/include</directory>
</source>
</sources>
<linkerStartOptions>
<linkerStartOption>${linker.startoptions}</linkerStartOption>
</linkerStartOptions>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>sign</id>
<phase>prepare-package</phase>
<configuration>
<target>
<exec executable="/usr/bin/codesign">
<arg value="-vvv" />
<arg value="--force" />
<arg value="--sign" />
<arg value="Developer ID Application: tagtraum industries incorporated (MW4Y4W5V4P)" />
<arg value="${project.build.directory}/${project.artifactId}.dylib" />
</exec>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>