Skip to content

Commit

Permalink
completing make chain
Browse files Browse the repository at this point in the history
  • Loading branch information
olir committed Aug 5, 2016
1 parent e9adce8 commit 604d8db
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ or open it without site:run under
You can compile the jni library from the target (jni/ and classes/):

> cd target/jni
> make clean all
## HOWTO
Expand Down
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,30 @@ Everyone is permitted to copy and distribute verbatim copies of this license doc
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>${basedir}/target</classesDirectory>
<classifier>native</classifier>
<includes>
<include>classes/**/*.class</include>
<include>classes/**/*.xml</include>
<include>jni/**/*.c</include>
<include>jni/**/*.h</include>
<include>jni/**/Makefile</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<!-- test -->
<!-- pre-test -->
Expand Down

0 comments on commit 604d8db

Please sign in to comment.