[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[jetty-users] Fwd: Re: Jetty 9 - Building the setUID Module v1.0.2
|
Hey there,
got it working now. The Maven Project setup was not correct.
Attached is the respective patch.
Best regards,
René
-------- Original-Nachricht --------
Hi Jesse,
ok thanks - the full debug log is attached. The Java Version is
the latest (1.8.0_20) Java 8 Version from Oracle.
I'll have a look at the config and see what I can adjust -
according to the log this is the only error occuring. This is
the content of the target directory:
What confuses me most, is the fact, that there's only this one
c-file - where are the others, the included h-file for instance
(I am not very familiar with c and compiling it with maven) ?
Best regards,
René
Mit
freundlichen Grüßen / Best regards,
René
Hartwig
Senior Developer
Befine
Solutions AG - The Cryptshare Company
Bebelstraße 17
79108 Freiburg
Germany
Tel: +49 (0) 761
38913 0
Fax: +49 (0) 761 38913 115
E-Mail: Rene.Hartwig@xxxxxxxxxxxxxxxxxxxx
Internet:
http://www.cryptshare.com
=========================================================================
Your attachments
are too large or too confidential for e-mail?
Get to know Cryptshare!
http://www.cryptshare.com
=========================================================================
Amtsgericht
Freiburg HRB 6144
Vorstand Mark Forrest, Dominik Lehr
Aufsichtsratsvorsitzender Thilo Braun
Am 03.09.2014 17:56, schrieb Jesse McConnell:
Make sure you are using a sane java version (as
in a recent one) and attach the whole build log....can't tell
what is going on with what is provided.
typically issues here are related to different operating
systems with things in different locations and I suspect
there is an error somewhere else in the process that isn't
failing the build correctly, these sorts of things are
notoriously not that portable
I suspect if it is that then you'll need to add a profile
for the operating system and adjust things accordingly...and
then you are welcome to contribute that back :)
jesse
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-users
|
>From 816080ff5695302a1ef77f79b87fa7fc5333ff09 Mon Sep 17 00:00:00 2001
From: Simon Erhardt <simon.erhardt@xxxxxxxxxxxxxxxxxxxx>
Date: Fri, 12 Sep 2014 11:01:48 +0200
Subject: [PATCH] Repaired the configuration of native-maven-plugin for javah
in libsetuid-linux.
---
jetty-setuid/libsetuid-linux/pom.xml | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/jetty-setuid/libsetuid-linux/pom.xml b/jetty-setuid/libsetuid-linux/pom.xml
index 3a2a25d..b87c173 100644
--- a/jetty-setuid/libsetuid-linux/pom.xml
+++ b/jetty-setuid/libsetuid-linux/pom.xml
@@ -44,6 +44,10 @@
<extensions>true</extensions>
<configuration>
<javahOS>linux</javahOS>
+ <javahClassNames>
+ <className>org.eclipse.jetty.setuid.SetUID</className>
+ </javahClassNames>
+ <javahOutputDirectory>target/generated</javahOutputDirectory>
<compilerStartOptions>
<compilerStartOption>-fPIC -O</compilerStartOption>
</compilerStartOptions>
@@ -67,12 +71,6 @@
<execution>
<id>javah</id>
<phase>generate-sources</phase>
- <configuration>
- <classNames>
- <className>org.eclipse.jetty.setuid.SetUID</className>
- </classNames>
- <outputDirectory>target/generated</outputDirectory>
- </configuration>
<goals>
<goal>javah</goal>
</goals>
--
1.8.1.2