summaryrefslogtreecommitdiff
path: root/src/it
diff options
context:
space:
mode:
authorMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-05 11:36:11 +0200
committerMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-05 11:36:11 +0200
commit3b4145fc7829fe7d6023d9da5e7497f26c7df863 (patch)
tree54834eb9e3a8e9e2f6db6cf8b08a221c27ce3534 /src/it
parent3705f9d9adaca497801c532d3f3087041f5504b4 (diff)
downloadmaven-nar-plugin-3b4145fc7829fe7d6023d9da5e7497f26c7df863.tar.gz
maven-nar-plugin-3b4145fc7829fe7d6023d9da5e7497f26c7df863.tar.bz2
maven-nar-plugin-3b4145fc7829fe7d6023d9da5e7497f26c7df863.tar.xz
maven-nar-plugin-3b4145fc7829fe7d6023d9da5e7497f26c7df863.zip
Added test it0006-jni-3rdparty
Diffstat (limited to 'src/it')
-rw-r--r--src/it/it0006-jni-3rdparty/pom.xml69
-rwxr-xr-xsrc/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/lib/libit0003-jni-1.0-SNAPSHOT.jnilibbin0 -> 8648 bytes
-rw-r--r--src/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/share/it0003-jni-1.0-SNAPSHOT.jarbin0 -> 4450 bytes
-rw-r--r--src/it/it0006-jni-3rdparty/src/test/java/HelloThirdPartyJNITest.java25
4 files changed, 94 insertions, 0 deletions
diff --git a/src/it/it0006-jni-3rdparty/pom.xml b/src/it/it0006-jni-3rdparty/pom.xml
new file mode 100644
index 0000000..65602e6
--- /dev/null
+++ b/src/it/it0006-jni-3rdparty/pom.xml
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF 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
+
+ http://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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.maven.its.nar</groupId>
+ <artifactId>it-parent</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <relativePath>../it-parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>it0006-jni-3rdparty</artifactId>
+ <packaging>nar</packaging>
+
+ <name>Maven NAR Third Party JNI</name>
+ <version>1.0-SNAPSHOT</version>
+ <description>
+ Java class that uses a 3rd party JNI and its library
+ </description>
+ <url>http://maven.apache.org/</url>
+<!--
+ <properties>
+ <maven.test.skip>true</maven.test.skip>
+ </properties>
+-->
+
+ <build>
+ <defaultGoal>integration-test</defaultGoal>
+ <plugins>
+ <plugin>
+ <artifactId>maven-nar-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <libraries>
+ <library>
+ <type>jni</type>
+ </library>
+ </libraries>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/src/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/lib/libit0003-jni-1.0-SNAPSHOT.jnilib b/src/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/lib/libit0003-jni-1.0-SNAPSHOT.jnilib
new file mode 100755
index 0000000..b7e52a4
--- /dev/null
+++ b/src/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/lib/libit0003-jni-1.0-SNAPSHOT.jnilib
Binary files differ
diff --git a/src/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/share/it0003-jni-1.0-SNAPSHOT.jar b/src/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/share/it0003-jni-1.0-SNAPSHOT.jar
new file mode 100644
index 0000000..f2e29f5
--- /dev/null
+++ b/src/it/it0006-jni-3rdparty/src/nar/resources/aol/x86_64-MacOSX-g++/share/it0003-jni-1.0-SNAPSHOT.jar
Binary files differ
diff --git a/src/it/it0006-jni-3rdparty/src/test/java/HelloThirdPartyJNITest.java b/src/it/it0006-jni-3rdparty/src/test/java/HelloThirdPartyJNITest.java
new file mode 100644
index 0000000..3ef06f3
--- /dev/null
+++ b/src/it/it0006-jni-3rdparty/src/test/java/HelloThirdPartyJNITest.java
@@ -0,0 +1,25 @@
+import junit.framework.*;
+
+import com.mycompany.mypackage.HelloWorldJNI;
+
+public class HelloThirdPartyJNITest extends TestCase {
+
+ public HelloThirdPartyJNITest(String name) {
+ super(name);
+ }
+
+ protected void setUp() throws Exception {
+ super.setUp();
+ }
+
+ protected void tearDown() throws Exception {
+ super.tearDown();
+ }
+
+ public void testNativeHelloThirdPartyJNI() throws Exception {
+ HelloWorldJNI app = new HelloWorldJNI();
+
+ this.assertEquals( "Hello NAR World!", app.sayHello() );
+ }
+}
+