<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>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <groupId>com.github.jnr</groupId>
  <artifactId>jffi</artifactId>
  <packaging>jar</packaging>
  <version>1.3.11</version>
  <name>jffi</name>
  <description>Java Foreign Function Interface</description>
  <url>http://github.com/jnr/jffi</url>

  <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:jnr/jffi.git</connection>
    <developerConnection>scm:git:git@github.com:jnr/jffi.git</developerConnection>
    <url>git@github.com:jnr/jffi.git</url>
  </scm>

  <developers>
    <developer>
      <id>wmeissner</id>
      <name>Wayne Meissner</name>
      <email>wmeissner@gmail.com</email>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <properties>
    <maven.test.skip>true</maven.test.skip>
    <maven.test.failure.ignore>true</maven.test.failure.ignore>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>8</maven.compiler.source>
    <maven.compiler.target>8</maven.compiler.target>
    <make.exe>make</make.exe>
  </properties>

  <profiles>
    <profile>
      <id>linux-profile</id>
      <activation>
        <os><name>linux</name></os>
      </activation>
    </profile>
    <profile>
      <id>freebsd-profile</id>
      <activation>
        <os><name>freebsd</name></os>
      </activation>
      <properties>
        <make.exe>gmake</make.exe>
      </properties>
    </profile>
    <profile>
      <id>dragonfly-profile</id>
      <activation>
        <os><name>dragonflybsd</name></os>
      </activation>
      <properties>
        <make.exe>gmake</make.exe>
      </properties>
    </profile>
    <profile>
      <id>java9</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <!-- Compile UnsafeMemoryIO without release flag, so it can access Unsafe -->
                <id>default-compile</id>
                <phase>compile</phase>
                <configuration>
                  <includes>
                    <include>com/kenai/jffi/UnsafeMemoryIO.java</include>
                  </includes>
                </configuration>
              </execution>
              <execution>
                <id>java9-compile</id>
                <phase>compile</phase>
                <goals><goal>compile</goal></goals>
                <configuration>
                  <!-- Compile the rest with release flag to ensure compatibility with 8 -->
                  <!-- Use -release compiler option rather than source/target if 9+ -->
                  <release>${maven.compiler.target}</release>
                  <!-- Exclude unsafe-using class when compiling with release flag -->
                  <includes>
                    <include>**/*.java</include>
                  </includes>
                  <excludes>
                    <exclude>com/kenai/jffi/UnsafeMemoryIO.java</exclude>
                  </excludes>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
      <activation>
        <jdk>[9,)</jdk>
      </activation>
    </profile>
  </profiles>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.1</version>
        <configuration>
          <debug>true</debug>
          <showDeprecation>true</showDeprecation>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>3.2.0</version>
        <executions>
          <execution>
            <id>default-jar</id>
            <configuration>
              <archive>
                <manifestEntries>
                  <Automatic-Module-Name>org.jnrproject.jffi</Automatic-Module-Name>
                </manifestEntries>
              </archive>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.4.0</version>
        <extensions>false</extensions>
        <executions>
          <execution>
            <id>jffi-complete</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
            <configuration>
              <manifestLocation>${project.build.directory}/META-INF-complete</manifestLocation>
              <instructions>
                <_nouses>true</_nouses>
                <Import-Package />
                <Bundle-SymbolicName>com.github.jnr.jffi</Bundle-SymbolicName>
                <Main-Class>com.kenai.jffi.Main</Main-Class>
                <Automatic-Module-Name>org.jnrproject.jffi</Automatic-Module-Name>
              </instructions>
            </configuration>
          </execution>
          <!-- Alternate execution to generate the native JAR's manifest -->
          <execution>
            <id>native-assembly</id>
            <phase>prepare-package</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
            <configuration>
              <manifestLocation>${project.build.directory}/META-INF-native</manifestLocation>
              <instructions>
                <_nouses>true</_nouses>
                <Import-Package />
                <Export-Package />
                <Fragment-Host>com.github.jnr.jffi</Fragment-Host>
                <Bundle-ClassPath>.,jni</Bundle-ClassPath>
                <Bundle-Description>Java Foreign Function Interface - Native Libraries</Bundle-Description>
                <Bundle-SymbolicName>com.github.jnr.jffi.native</Bundle-SymbolicName>
                <Require-Bundle>com.github.jnr.jffi</Require-Bundle>
                <Automatic-Module-Name>org.jnrproject.jffi.nativelibs</Automatic-Module-Name>
              </instructions>
            </configuration>
          </execution>
        </executions>
      </plugin>
<!--
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <version>1.1</version>
        <executions>
          <execution>
            <id>build-native-library</id>
            <phase>process-classes</phase>
            <configuration>
              <tasks>
                <property name="os.name" value="${os.name}" />
                <property name="os.arch" value="${os.arch}" />
                <property name="java.home" value="${java.home}" />
                <property name="dist.dir" value="${project.build.directory}" />
                <property name="build.dir" value="${project.build.directory}" />
                <property name="build.classes.dir" value="${project.build.outputDirectory}" />
                <ant antfile="custom-build.xml" dir="." target="-assemble-native-jar" />
                <unjar src="${project.build.directory}/native.jar" dest="${project.build.outputDirectory}" />
              </tasks>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
-->
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>build-helper-maven-plugin</artifactId>
          <version>3.2.0</version>
          <executions>
            <execution>
              <id>add-source-directory</id>
              <phase>generate-sources</phase>
              <configuration>
              <sources>
                <source>${project.build.directory}/java</source>
              </sources>
              </configuration>
              <goals>
                <goal>add-source</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-antrun-plugin</artifactId>
          <version>3.0.0</version>
          <executions>
            <execution>
            <id>build-native-library</id>
            <phase>generate-sources</phase>
            <configuration>
              <target>
                <property name="os.name" value="${os.name}" />
                <property name="os.arch" value="${os.arch}" />
                <property name="java.home" value="${java.home}" />
                <property name="dist.dir" value="${project.build.directory}" />
                <property name="build.dir" value="${project.build.directory}" />
                <property name="build.classes.dir" value="${project.build.outputDirectory}" />
                <ant antfile="version.xml" dir="." target="-generate-version-source" />
              </target>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
            <execution>
                <phase>process-test-resources</phase>
                <goals>
                    <goal>run</goal>
                </goals>
                <configuration>
                    <target>
                      <unzip dest="${project.build.directory}/" overwrite="true">
                          <patternset>
                            <include name="**/*.so" />
                            <include name="**/*.dylib" />
                            <include name="**/*.jnilib" />
                            <include name="**/*.dll" />
                            <include name="**/*.a" />
                          </patternset>
                          <fileset dir="archive">
                            <include name="**/*.jar" />
                          </fileset>
                      </unzip>
                    </target>
                </configuration>
            </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2</version>
        <executions>
          <execution>
            <id>jffi-complete</id>
            <phase>package</phase> <!-- append to the packaging phase. -->
            <goals>
              <goal>single</goal> <!-- goals == mojos -->
            </goals>
            <configuration>
              <descriptors>
                <descriptor>src/main/assembly/complete.xml</descriptor>
              </descriptors>
              <archive>
                <index>true</index>
                <manifestFile>${project.build.directory}/META-INF-complete/MANIFEST.MF</manifestFile>
              </archive>
              <!-- <appendAssemblyId>false</appendAssemblyId> -->
            </configuration>
          </execution>
          <execution>
            <id>native-assembly</id> <!-- this is used for inheritance merges -->
            <phase>package</phase> <!-- append to the packaging phase. -->
            <goals>
              <goal>single</goal> <!-- goals == mojos -->
            </goals>
            <configuration>
              <descriptors>
                <descriptor>src/main/assembly/native.xml</descriptor>
              </descriptors>
              <archive>
                <index>true</index>
                <manifestFile>${project.build.directory}/META-INF-native/MANIFEST.MF</manifestFile>
              </archive>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
