From 54c4c84888b840be561565f79654e59f80766ecc Mon Sep 17 00:00:00 2001 From: Mark Donszelmann Date: Tue, 15 Dec 2009 22:53:33 +0100 Subject: Fixed NAR-90 and NAR-118 --- .../pom.xml | 68 ++++++++++++++++++++++ .../src/main/c/HelloWorldExe.c | 9 +++ 2 files changed, 77 insertions(+) create mode 100644 src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/pom.xml create mode 100644 src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/src/main/c/HelloWorldExe.c (limited to 'src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21') diff --git a/src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/pom.xml b/src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/pom.xml new file mode 100644 index 0000000..3322daa --- /dev/null +++ b/src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/pom.xml @@ -0,0 +1,68 @@ + + + + + + 4.0.0 + + + org.apache.maven.its.nar + it0016-pom + 1.0-SNAPSHOT + + + it0016-executable-dep-lib-shared-layout21 + nar + + Maven NAR Executable and Shared Library (Layout21) + 1.0-SNAPSHOT + + Executable depending on a shared library. + + + + true + + + + integration-test + + + maven-nar-plugin + true + + + + executable + true + + + + + + + + + org.apache.maven.its.nar + it0016-lib-shared-layout21 + 1.0-SNAPSHOT + + + diff --git a/src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/src/main/c/HelloWorldExe.c b/src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/src/main/c/HelloWorldExe.c new file mode 100644 index 0000000..4aa35d8 --- /dev/null +++ b/src/it/it0016-layout/it0016-executable-dep-lib-shared-layout21/src/main/c/HelloWorldExe.c @@ -0,0 +1,9 @@ +#include +#include "HelloWorldLib.h" + +int main(int argc, char *argv[]) { + printf("%s\n", HelloWorldLib_sayHello()); + return 0; +} + + -- cgit v1.2.3