summaryrefslogtreecommitdiff
path: root/src/it
diff options
context:
space:
mode:
authorMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-06 15:01:22 +0200
committerMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-06 15:01:22 +0200
commitfe2d4c4194f53f5af52b31584fad1420f9718fa9 (patch)
treefa244f68f34e699918b3d818b59836e8c1c8efab /src/it
parent3dca89f0015613ab3f287945965e9f92a6079cd8 (diff)
downloadmaven-nar-plugin-fe2d4c4194f53f5af52b31584fad1420f9718fa9.tar.gz
maven-nar-plugin-fe2d4c4194f53f5af52b31584fad1420f9718fa9.tar.bz2
maven-nar-plugin-fe2d4c4194f53f5af52b31584fad1420f9718fa9.tar.xz
maven-nar-plugin-fe2d4c4194f53f5af52b31584fad1420f9718fa9.zip
Reformatted it0003-jni
Diffstat (limited to 'src/it')
-rw-r--r--src/it/it0003-jni/pom.xml2
-rw-r--r--src/it/it0003-jni/src/main/c/HelloWorldJNI.c23
-rw-r--r--src/it/it0003-jni/src/main/java/it0003/HelloWorldJNI.java (renamed from src/it/it0003-jni/src/main/java/com/mycompany/mypackage/HelloWorldJNI.java)2
-rw-r--r--src/it/it0003-jni/src/test/java/HelloWorldJNITest.java25
-rw-r--r--src/it/it0003-jni/src/test/java/it0003/test/HelloWorldJNITest.java54
5 files changed, 77 insertions, 29 deletions
diff --git a/src/it/it0003-jni/pom.xml b/src/it/it0003-jni/pom.xml
index eaf71c6..9069e8f 100644
--- a/src/it/it0003-jni/pom.xml
+++ b/src/it/it0003-jni/pom.xml
@@ -57,7 +57,7 @@ under the License.
<libraries>
<library>
<type>jni</type>
- <narSystemPackage>com.mycompany.mypackage</narSystemPackage>
+ <narSystemPackage>it0003</narSystemPackage>
<linkCPP>false</linkCPP>
</library>
</libraries>
diff --git a/src/it/it0003-jni/src/main/c/HelloWorldJNI.c b/src/it/it0003-jni/src/main/c/HelloWorldJNI.c
index 716722e..f663a54 100644
--- a/src/it/it0003-jni/src/main/c/HelloWorldJNI.c
+++ b/src/it/it0003-jni/src/main/c/HelloWorldJNI.c
@@ -1,7 +1,26 @@
+/*
+ * 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.
+ */
+
#include <stdio.h>
-#include "com_mycompany_mypackage_HelloWorldJNI.h"
+#include "it0003_HelloWorldJNI.h"
-JNIEXPORT jstring JNICALL Java_com_mycompany_mypackage_HelloWorldJNI_sayHello( JNIEnv *env, jobject obj ) {
+JNIEXPORT jstring JNICALL Java_it0003_HelloWorldJNI_sayHello( JNIEnv *env, jobject obj ) {
jstring value; /* the return value */
char buf[40]; /* working buffer (really only need 20 ) */
diff --git a/src/it/it0003-jni/src/main/java/com/mycompany/mypackage/HelloWorldJNI.java b/src/it/it0003-jni/src/main/java/it0003/HelloWorldJNI.java
index 3aede4c..b1f3a84 100644
--- a/src/it/it0003-jni/src/main/java/com/mycompany/mypackage/HelloWorldJNI.java
+++ b/src/it/it0003-jni/src/main/java/it0003/HelloWorldJNI.java
@@ -1,4 +1,4 @@
-package com.mycompany.mypackage;
+package it0003;
/*
* Licensed to the Apache Software Foundation (ASF) under one
diff --git a/src/it/it0003-jni/src/test/java/HelloWorldJNITest.java b/src/it/it0003-jni/src/test/java/HelloWorldJNITest.java
deleted file mode 100644
index 683c321..0000000
--- a/src/it/it0003-jni/src/test/java/HelloWorldJNITest.java
+++ /dev/null
@@ -1,25 +0,0 @@
-import junit.framework.*;
-
-import com.mycompany.mypackage.HelloWorldJNI;
-
-public class HelloWorldJNITest extends TestCase {
-
- public HelloWorldJNITest(String name) {
- super(name);
- }
-
- protected void setUp() throws Exception {
- super.setUp();
- }
-
- protected void tearDown() throws Exception {
- super.tearDown();
- }
-
- public void testNativeHelloWorldJNI() throws Exception {
- HelloWorldJNI app = new HelloWorldJNI();
-
- this.assertEquals( "Hello NAR World!", app.sayHello() );
- }
-}
-
diff --git a/src/it/it0003-jni/src/test/java/it0003/test/HelloWorldJNITest.java b/src/it/it0003-jni/src/test/java/it0003/test/HelloWorldJNITest.java
new file mode 100644
index 0000000..cfbf1db
--- /dev/null
+++ b/src/it/it0003-jni/src/test/java/it0003/test/HelloWorldJNITest.java
@@ -0,0 +1,54 @@
+package it0003.test;
+
+/*
+ * 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.
+ */
+
+import it0003.HelloWorldJNI;
+import junit.framework.*;
+
+
+public class HelloWorldJNITest
+ extends TestCase
+{
+
+ public HelloWorldJNITest( String name )
+ {
+ super( name );
+ }
+
+ protected void setUp()
+ throws Exception
+ {
+ super.setUp();
+ }
+
+ protected void tearDown()
+ throws Exception
+ {
+ super.tearDown();
+ }
+
+ public void testNativeHelloWorldJNI()
+ throws Exception
+ {
+ HelloWorldJNI app = new HelloWorldJNI();
+
+ Assert.assertEquals( "Hello NAR World!", app.sayHello() );
+ }
+}