diff options
author | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2009-12-03 15:29:33 +0100 |
---|---|---|
committer | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2009-12-03 15:29:33 +0100 |
commit | 7ca14517504d597617083bae733cf61b3ba5742e (patch) | |
tree | 8786ffdc82ffda461826149e37c8aed299b45687 /src/site | |
parent | 7e67a8e010cc8b42b88fea00ea57a0df5dafd692 (diff) | |
download | maven-nar-plugin-7ca14517504d597617083bae733cf61b3ba5742e.tar.gz maven-nar-plugin-7ca14517504d597617083bae733cf61b3ba5742e.tar.bz2 maven-nar-plugin-7ca14517504d597617083bae733cf61b3ba5742e.tar.xz maven-nar-plugin-7ca14517504d597617083bae733cf61b3ba5742e.zip |
Documented NAR-72
Diffstat (limited to 'src/site')
-rw-r--r-- | src/site/apt/usage.apt | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/src/site/apt/usage.apt b/src/site/apt/usage.apt index d384b1a..b597732 100644 --- a/src/site/apt/usage.apt +++ b/src/site/apt/usage.apt @@ -95,7 +95,7 @@ to disable exceptions and not link with C++. generated by javah, we exclude this file from javah. We also include the compilation and linking with java. The example also shows how to configure the -{{{http://java.freehep.org/freehep-swig-plugin}freehep-swig-plugin}}. +{{{http://duns.github.com/maven-swig-plugin/}maven-swig-plugin}}. +-- <project> @@ -105,9 +105,7 @@ The example also shows how to configure the <build> <plugins> <plugin> - <groupId>org.freehep</groupId> - <artifactId>freehep-swig-plugin</artifactId> - <extensions>true</extensions> + <artifactId>maven-swig-plugin</artifactId> <executions> <execution> <id>swig</id> @@ -125,21 +123,8 @@ The example also shows how to configure the ... <plugin> <artifactId>maven-nar-plugin</artifactId> - <configuration> - <java> - <include>true</include> - </java> - <javah> - <excludes> - <exclude>**/ModuleJNI.class</exclude> - </excludes> - </javah> - <libraries> - <library> - <type>jni</type> - </library> - </libraries> - </configuration> + <extensions>true</extensions> + <!-- STRICTLY NO CONFIGURATION, maven-swig-plugin will configure --> </plugin> </plugins> </build> |