summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMark Donszelmann <Mark.Donszelmann@gmail.com>2009-11-29 22:05:55 +0100
committerMark Donszelmann <Mark.Donszelmann@gmail.com>2009-11-29 22:05:55 +0100
commitb4e4a008ccd1c7a2cda9d1991a1c1f94a60caa80 (patch)
tree08678ca5288e3c90fa9574e8cbb6a600728c99e3 /src
parent73f933b9deb14888adc7e3f65fec7bc2b4d9e0eb (diff)
downloadmaven-nar-plugin-b4e4a008ccd1c7a2cda9d1991a1c1f94a60caa80.tar.gz
maven-nar-plugin-b4e4a008ccd1c7a2cda9d1991a1c1f94a60caa80.tar.bz2
maven-nar-plugin-b4e4a008ccd1c7a2cda9d1991a1c1f94a60caa80.tar.xz
maven-nar-plugin-b4e4a008ccd1c7a2cda9d1991a1c1f94a60caa80.zip
IT0018 does not run any longer on windows; it0005 is skipped on linux-amd64; Added skip param to doc
Diffstat (limited to 'src')
-rw-r--r--src/it/it0005-jni-static/pom.xml56
-rw-r--r--src/it/it0018-fortran/pom.xml23
-rw-r--r--src/site/apt/configuration.apt1
3 files changed, 49 insertions, 31 deletions
diff --git a/src/it/it0005-jni-static/pom.xml b/src/it/it0005-jni-static/pom.xml
index 04fbe4e..3f80d97 100644
--- a/src/it/it0005-jni-static/pom.xml
+++ b/src/it/it0005-jni-static/pom.xml
@@ -1,25 +1,23 @@
<?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
+ <!--
+ 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
+ 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.
+ -->
-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">
+<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>
@@ -31,14 +29,14 @@ under the License.
<artifactId>it0005-jni-static</artifactId>
<packaging>nar</packaging>
-
+
<name>Maven NAR Static JNI Test</name>
<version>1.0-SNAPSHOT</version>
<description>
Simple Static JNI Library
</description>
<url>http://maven.apache.org/</url>
-
+
<properties>
<skipTests>true</skipTests>
</properties>
@@ -68,10 +66,12 @@ under the License.
</plugin>
</plugins>
</build>
- </profile>
+ </profile>
- <!-- does not build on AMD64 as this platforms needs all static (libc included) libraries to be compiled with -fPIC
- so, for now we build the shared version. -->
+ <!--
+ does not build on AMD64 as this platforms needs all static (libc
+ included) libraries to be compiled with -fPIC
+ -->
<profile>
<id>amd64</id>
<activation>
@@ -80,7 +80,7 @@ under the License.
<arch>amd64</arch>
</os>
</activation>
-
+
<build>
<defaultGoal>install</defaultGoal>
<plugins>
@@ -88,13 +88,7 @@ under the License.
<artifactId>maven-nar-plugin</artifactId>
<extensions>true</extensions>
<configuration>
- <libraries>
- <library>
- <type>jni</type>
- <narSystemPackage>it0005</narSystemPackage>
- <linkCPP>false</linkCPP>
- </library>
- </libraries>
+ <skip>true</skip>
</configuration>
</plugin>
</plugins>
diff --git a/src/it/it0018-fortran/pom.xml b/src/it/it0018-fortran/pom.xml
index 7837a9b..ed20f5c 100644
--- a/src/it/it0018-fortran/pom.xml
+++ b/src/it/it0018-fortran/pom.xml
@@ -71,6 +71,29 @@ under the License.
</build>
</profile>
+ <profile>
+ <id>windows</id>
+ <activation>
+ <os>
+ <family>windows</family>
+ </os>
+ </activation>
+
+ <build>
+ <defaultGoal>install</defaultGoal>
+ <plugins>
+ <plugin>
+ <artifactId>maven-nar-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+
</profiles>
</project>
diff --git a/src/site/apt/configuration.apt b/src/site/apt/configuration.apt
index 5722f48..9c5306c 100644
--- a/src/site/apt/configuration.apt
+++ b/src/site/apt/configuration.apt
@@ -11,6 +11,7 @@ NAR Configuration
+--
<configuration>
+ <skip/>
<arch/>
<os/>
<javaHome/>