From 4ba4c1e4029bbfd271d362413f4f4b874853763b Mon Sep 17 00:00:00 2001 From: Mark Donszelmann Date: Fri, 2 Oct 2009 15:09:21 +0200 Subject: Added simple test to be run with -Prun-its --- src/it/executable/pom.xml | 63 +++++++++++++++++++++++++++++++ src/it/executable/src/main/c/Executable.c | 8 ++++ 2 files changed, 71 insertions(+) create mode 100644 src/it/executable/pom.xml create mode 100644 src/it/executable/src/main/c/Executable.c (limited to 'src/it/executable') diff --git a/src/it/executable/pom.xml b/src/it/executable/pom.xml new file mode 100644 index 0000000..00bf1c8 --- /dev/null +++ b/src/it/executable/pom.xml @@ -0,0 +1,63 @@ + + + + + + 4.0.0 + + + org.apache.maven.its.nar + it-parent + 1.0-SNAPSHOT + ../it-parent/pom.xml + + + executable + nar + + Maven NAR Executable Test + 1.0-SNAPSHOT + + Simple test executable + + http://maven.apache.org/ + + + true + + + + integration-test + + + maven-nar-plugin + true + + + + executable + true + + + + + + + diff --git a/src/it/executable/src/main/c/Executable.c b/src/it/executable/src/main/c/Executable.c new file mode 100644 index 0000000..d640602 --- /dev/null +++ b/src/it/executable/src/main/c/Executable.c @@ -0,0 +1,8 @@ +#include + +int main(int argc, char *argv[]) { + printf("Helloworld\n"); + return 0; +} + + -- cgit v1.2.3