| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ Copyright 2016 The Netty Project
- ~
- ~ The Netty Project licenses this file to you under the Apache License,
- ~ version 2.0 (the "License"); you may not use this file except in compliance
- ~ with the License. You may obtain a copy of the License at:
- ~
- ~ https://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- ~ License for the specific language governing permissions and limitations
- ~ under the License.
- -->
- <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 https://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.netty</groupId>
- <artifactId>netty-parent</artifactId>
- <version>4.1.86.Final</version>
- </parent>
- <artifactId>netty-transport-native-unix-common</artifactId>
- <name>Netty/Transport/Native/Unix/Common</name>
- <packaging>jar</packaging>
- <description>
- Static library which contains common unix utilities.
- </description>
- <properties>
- <javaModuleName>io.netty.transport.unix.common</javaModuleName>
- <exe.make>make</exe.make>
- <exe.compiler>gcc</exe.compiler>
- <exe.archiver>ar</exe.archiver>
- <nativeLibName>libnetty-unix-common</nativeLibName>
- <nativeIncludeDir>${project.basedir}/src/main/c</nativeIncludeDir>
- <jniUtilIncludeDir>${project.build.directory}/netty-jni-util/</jniUtilIncludeDir>
- <nativeJarWorkdir>${project.build.directory}/native-jar-work</nativeJarWorkdir>
- <nativeObjsOnlyDir>${project.build.directory}/native-objs-only</nativeObjsOnlyDir>
- <nativeLibOnlyDir>${project.build.directory}/native-lib-only</nativeLibOnlyDir>
- <defaultJarFile>${project.build.directory}/${project.build.finalName}.jar</defaultJarFile>
- <nativeJarFile>${project.build.directory}/${project.build.finalName}-${jni.classifier}.jar</nativeJarFile>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <!-- unpack netty-jni-util files -->
- <execution>
- <id>unpack</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>unpack-dependencies</goal>
- </goals>
- <configuration>
- <includeGroupIds>io.netty</includeGroupIds>
- <includeArtifactIds>netty-jni-util</includeArtifactIds>
- <classifier>sources</classifier>
- <outputDirectory>${jniUtilIncludeDir}</outputDirectory>
- <includes>**.h,**.c</includes>
- <overWriteReleases>false</overWriteReleases>
- <overWriteSnapshots>true</overWriteSnapshots>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <!-- Also include c files in source jar -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>${nativeIncludeDir}</source>
- </sources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>mac</id>
- <activation>
- <os>
- <family>mac</family>
- </os>
- </activation>
- <properties>
- <exe.compiler>clang</exe.compiler>
- <jni.platform>darwin</jni.platform>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <!-- Build the additional JAR that contains the native library. -->
- <execution>
- <id>native-jar</id>
- <phase>package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <copy todir="${nativeJarWorkdir}">
- <zipfileset src="${defaultJarFile}" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeLibOnlyDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+)$" to="META-INF/native/lib/\1" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${jniUtilIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <jar destfile="${nativeJarFile}" manifest="${nativeJarWorkdir}/META-INF/MANIFEST.MF" basedir="${nativeJarWorkdir}" index="true" excludes="META-INF/MANIFEST.MF,META-INF/INDEX.LIST" />
- <attachartifact file="${nativeJarFile}" classifier="${jni.classifier}" type="jar" />
- </target>
- </configuration>
- </execution>
- <!-- invoke the make file to build a static library -->
- <execution>
- <id>build-native-lib</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <exec executable="${exe.make}" failonerror="true" resolveexecutable="true">
- <env key="CC" value="${exe.compiler}" />
- <env key="AR" value="${exe.archiver}" />
- <env key="LIB_DIR" value="${nativeLibOnlyDir}" />
- <env key="OBJ_DIR" value="${nativeObjsOnlyDir}" />
- <env key="JNI_PLATFORM" value="${jni.platform}" />
- <env key="CFLAGS" value="-O3 -Werror -Wno-attributes -fPIC -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden" />
- <env key="LDFLAGS" value="-Wl,--no-as-needed -lrt -Wl,-platform_version,macos,10.2,10.2" />
- <env key="LIB_NAME" value="${nativeLibName}" />
- <!-- support for __attribute__((weak_import)) by the linker was added in 10.2 so ensure we
- explicitly set the target platform. Otherwise we may get fatal link errors due to weakly linked
- methods which are not expected to be present on MacOS (e.g. accept4). -->
- <env key="MACOSX_DEPLOYMENT_TARGET" value="10.2" />
- </exec>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>mac-m1-cross-compile</id>
- <properties>
- <exe.compiler>clang</exe.compiler>
- <jni.platform>darwin</jni.platform>
- <!-- use aarch_64 as this is also what os.detected.arch will use on an aarch64 system -->
- <jni.classifier>${os.detected.name}-aarch_64</jni.classifier>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <!-- Build the additional JAR that contains the native library. -->
- <execution>
- <id>native-jar</id>
- <phase>package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <copy todir="${nativeJarWorkdir}">
- <zipfileset src="${defaultJarFile}" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeLibOnlyDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+)$" to="META-INF/native/lib/\1" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${jniUtilIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <jar destfile="${nativeJarFile}" manifest="${nativeJarWorkdir}/META-INF/MANIFEST.MF" basedir="${nativeJarWorkdir}" index="true" excludes="META-INF/MANIFEST.MF,META-INF/INDEX.LIST" />
- <attachartifact file="${nativeJarFile}" classifier="${jni.classifier}" type="jar" />
- </target>
- </configuration>
- </execution>
- <!-- invoke the make file to build a static library -->
- <execution>
- <id>build-native-lib</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <exec executable="${exe.make}" failonerror="true" resolveexecutable="true">
- <env key="CC" value="${exe.compiler}" />
- <env key="AR" value="${exe.archiver}" />
- <env key="LIB_DIR" value="${nativeLibOnlyDir}" />
- <env key="OBJ_DIR" value="${nativeObjsOnlyDir}" />
- <env key="JNI_PLATFORM" value="${jni.platform}" />
- <env key="CFLAGS" value="-target arm64-apple-macos11 -O3 -Werror -Wno-attributes -fPIC -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden" />
- <env key="LDFLAGS" value="-arch arm64 -Wl,--no-as-needed -lrt -Wl,-platform_version,macos,11.0,11.0" />
- <env key="LIB_NAME" value="${nativeLibName}" />
- <env key="MACOSX_DEPLOYMENT_TARGET" value="11.0" />
- </exec>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>mac-intel-cross-compile</id>
- <properties>
- <exe.compiler>clang</exe.compiler>
- <jni.platform>darwin</jni.platform>
- <!-- use aarch_64 as this is also what os.detected.arch will use on an aarch64 system -->
- <jni.classifier>${os.detected.name}-x86_64</jni.classifier>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <!-- Build the additional JAR that contains the native library. -->
- <execution>
- <id>native-jar</id>
- <phase>package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <copy todir="${nativeJarWorkdir}">
- <zipfileset src="${defaultJarFile}" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeLibOnlyDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+)$" to="META-INF/native/lib/\1" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${jniUtilIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <jar destfile="${nativeJarFile}" manifest="${nativeJarWorkdir}/META-INF/MANIFEST.MF" basedir="${nativeJarWorkdir}" index="true" excludes="META-INF/MANIFEST.MF,META-INF/INDEX.LIST" />
- <attachartifact file="${nativeJarFile}" classifier="${jni.classifier}" type="jar" />
- </target>
- </configuration>
- </execution>
- <!-- invoke the make file to build a static library -->
- <execution>
- <id>build-native-lib</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <exec executable="${exe.make}" failonerror="true" resolveexecutable="true">
- <env key="CC" value="${exe.compiler}" />
- <env key="AR" value="${exe.archiver}" />
- <env key="LIB_DIR" value="${nativeLibOnlyDir}" />
- <env key="OBJ_DIR" value="${nativeObjsOnlyDir}" />
- <env key="JNI_PLATFORM" value="${jni.platform}" />
- <env key="CFLAGS" value="-target arm64-apple-macos11 -O3 -Werror -Wno-attributes -fPIC -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden" />
- <env key="LDFLAGS" value="-arch arm64 -Wl,--no-as-needed -lrt -Wl,-platform_version,macos,10.6,10.6" />
- <env key="LIB_NAME" value="${nativeLibName}" />
- <env key="MACOSX_DEPLOYMENT_TARGET" value="10.6" />
- </exec>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>linux</id>
- <activation>
- <os>
- <family>linux</family>
- </os>
- </activation>
- <properties>
- <jni.platform>linux</jni.platform>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <!-- Build the additional JAR that contains the native library. -->
- <execution>
- <id>native-jar</id>
- <phase>package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <copy todir="${nativeJarWorkdir}">
- <zipfileset src="${defaultJarFile}" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeLibOnlyDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+)$" to="META-INF/native/lib/\1" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${jniUtilIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <jar destfile="${nativeJarFile}" manifest="${nativeJarWorkdir}/META-INF/MANIFEST.MF" basedir="${nativeJarWorkdir}" index="true" excludes="META-INF/MANIFEST.MF,META-INF/INDEX.LIST" />
- <attachartifact file="${nativeJarFile}" classifier="${jni.classifier}" type="jar" />
- </target>
- </configuration>
- </execution>
- <!-- invoke the make file to build a static library -->
- <execution>
- <id>build-native-lib</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <exec executable="${exe.make}" failonerror="true" resolveexecutable="true">
- <env key="CC" value="${exe.compiler}" />
- <env key="AR" value="${exe.archiver}" />
- <env key="LIB_DIR" value="${nativeLibOnlyDir}" />
- <env key="OBJ_DIR" value="${nativeObjsOnlyDir}" />
- <env key="JNI_PLATFORM" value="${jni.platform}" />
- <env key="CFLAGS" value="-O3 -Werror -Wno-attributes -fPIC -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden" />
- <env key="LDFLAGS" value="-Wl,--no-as-needed -lrt" />
- <env key="LIB_NAME" value="${nativeLibName}" />
- </exec>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>linux-aarch64</id>
- <properties>
- <!-- use aarch_64 as this is also what os.detected.arch will use on an aarch64 system -->
- <jni.classifier>${os.detected.name}-aarch_64</jni.classifier>
- <jni.platform>linux</jni.platform>
- <exe.compiler>aarch64-none-linux-gnu-gcc</exe.compiler>
- <exe.archiver>aarch64-none-linux-gnu-ar</exe.archiver>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <!-- Build the additional JAR that contains the native library. -->
- <execution>
- <id>native-jar</id>
- <phase>package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <copy todir="${nativeJarWorkdir}">
- <zipfileset src="${defaultJarFile}" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeLibOnlyDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+)$" to="META-INF/native/lib/\1" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${jniUtilIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <jar destfile="${nativeJarFile}" manifest="${nativeJarWorkdir}/META-INF/MANIFEST.MF" basedir="${nativeJarWorkdir}" index="true" excludes="META-INF/MANIFEST.MF,META-INF/INDEX.LIST" />
- <attachartifact file="${nativeJarFile}" classifier="${jni.classifier}" type="jar" />
- </target>
- </configuration>
- </execution>
- <!-- invoke the make file to build a static library -->
- <execution>
- <id>build-native-lib</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <exec executable="${exe.make}" failonerror="true" resolveexecutable="true">
- <env key="CC" value="${exe.compiler}" />
- <env key="AR" value="${exe.archiver}" />
- <env key="LIB_DIR" value="${nativeLibOnlyDir}" />
- <env key="OBJ_DIR" value="${nativeObjsOnlyDir}" />
- <env key="JNI_PLATFORM" value="${jni.platform}" />
- <env key="CFLAGS" value="-O3 -Werror -Wno-attributes -fPIC -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden" />
- <env key="LDFLAGS" value="-Wl,--no-as-needed -lrt" />
- <env key="LIB_NAME" value="${nativeLibName}" />
- </exec>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>freebsd</id>
- <activation>
- <os>
- <family>unix</family>
- <name>freebsd</name>
- </os>
- </activation>
- <properties>
- <exe.compiler>clang</exe.compiler>
- <exe.make>gmake</exe.make>
- <jni.platform>freebsd</jni.platform>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <!-- Build the additional JAR that contains the native library. -->
- <execution>
- <id>native-jar</id>
- <phase>package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <copy todir="${nativeJarWorkdir}">
- <zipfileset src="${defaultJarFile}" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeLibOnlyDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+)$" to="META-INF/native/lib/\1" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <jar destfile="${nativeJarFile}" manifest="${nativeJarWorkdir}/META-INF/MANIFEST.MF" basedir="${nativeJarWorkdir}" index="true" excludes="META-INF/MANIFEST.MF,META-INF/INDEX.LIST" />
- <attachartifact file="${nativeJarFile}" classifier="${jni.classifier}" type="jar" />
- </target>
- </configuration>
- </execution>
- <!-- invoke the make file to build a static library -->
- <execution>
- <id>build-native-lib</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <exec executable="${exe.make}" failonerror="true" resolveexecutable="true">
- <env key="CC" value="${exe.compiler}" />
- <env key="AR" value="${exe.archiver}" />
- <env key="LIB_DIR" value="${nativeLibOnlyDir}" />
- <env key="OBJ_DIR" value="${nativeObjsOnlyDir}" />
- <env key="JNI_PLATFORM" value="${jni.platform}" />
- <env key="CFLAGS" value="-O3 -Werror -Wno-attributes -fPIC -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden" />
- <env key="LDFLAGS" value="-Wl,--no-as-needed -lrt" />
- <env key="LIB_NAME" value="${nativeLibName}" />
- </exec>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>openbsd</id>
- <activation>
- <os>
- <family>unix</family>
- <name>openbsd</name>
- </os>
- </activation>
- <properties>
- <exe.compiler>clang</exe.compiler>
- <exe.make>gmake</exe.make>
- <jni.platform>openbsd</jni.platform>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <!-- Build the additional JAR that contains the native library. -->
- <execution>
- <id>native-jar</id>
- <phase>package</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <copy todir="${nativeJarWorkdir}">
- <zipfileset src="${defaultJarFile}" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeLibOnlyDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+)$" to="META-INF/native/lib/\1" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${nativeIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <copy todir="${nativeJarWorkdir}" includeEmptyDirs="false">
- <zipfileset dir="${jniUtilIncludeDir}" />
- <regexpmapper handledirsep="yes" from="^(?:[^/]+/)*([^/]+).h$" to="META-INF/native/include/\1.h" />
- </copy>
- <jar destfile="${nativeJarFile}" manifest="${nativeJarWorkdir}/META-INF/MANIFEST.MF" basedir="${nativeJarWorkdir}" index="true" excludes="META-INF/MANIFEST.MF,META-INF/INDEX.LIST" />
- <attachartifact file="${nativeJarFile}" classifier="${jni.classifier}" type="jar" />
- </target>
- </configuration>
- </execution>
- <!-- invoke the make file to build a static library -->
- <execution>
- <id>build-native-lib</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <exec executable="${exe.make}" failonerror="true" resolveexecutable="true">
- <env key="CC" value="${exe.compiler}" />
- <env key="AR" value="${exe.archiver}" />
- <env key="LIB_DIR" value="${nativeLibOnlyDir}" />
- <env key="OBJ_DIR" value="${nativeObjsOnlyDir}" />
- <env key="JNI_PLATFORM" value="${jni.platform}" />
- <env key="CFLAGS" value="-O3 -Werror -Wno-attributes -fPIC -fno-omit-frame-pointer -Wunused-variable -fvisibility=hidden" />
- <env key="LDFLAGS" value="-Wl,--no-as-needed -lrt" />
- <env key="LIB_NAME" value="${nativeLibName}" />
- </exec>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- <dependencies>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-jni-util</artifactId>
- <classifier>sources</classifier>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-buffer</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-transport</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </project>
|