psn.ifplusor.actrie 3.0.9 Latest version
Install 1/2: Add this to pom.xml:
Learn more about Maven or Gradle
<dependency>
<groupId>psn.ifplusor</groupId>
<artifactId>actrie</artifactId>
<version>3.0.9</version>
</dependency>
Install 2/2: Run via command line
$ mvn install
About this package
pom.xml example:
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>psn.ifplusor</groupId>
<artifactId>actrie-example</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>Actrie Example</name>
<description>How to use actrie in Maven.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.test.skip>true</maven.test.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
<nar-plugin.version>3.10.1</nar-plugin.version>
<actrie.version>3.0.9</actrie.version>
</properties>
<dependencies>
<dependency>
<groupId>psn.ifplusor</groupId>
<artifactId>actrie</artifactId>
<version>${actrie.version}</version>
<type>nar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.maven-nar</groupId>
<artifactId>nar-maven-plugin</artifactId>
<version>${nar-plugin.version}</version>
<extensions>true</extensions>
<executions>
<execution>
<id>nar-download</id>
<phase>initialize</phase>
<goals>
<goal>nar-download</goal>
</goals>
</execution>
<execution>
<id>nar-unpack</id>
<phase>generate-sources</phase>
<goals>
<goal>nar-unpack</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<!-- Copy native library -->
<id>copy-resources</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}/nar/actrie-${actrie.version}-${nar.aol}-jni</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>