summaryrefslogtreecommitdiff
path: root/src/it/it0011-executable-dep-lib-static/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/it/it0011-executable-dep-lib-static/pom.xml')
-rw-r--r--src/it/it0011-executable-dep-lib-static/pom.xml43
1 files changed, 33 insertions, 10 deletions
diff --git a/src/it/it0011-executable-dep-lib-static/pom.xml b/src/it/it0011-executable-dep-lib-static/pom.xml
index 34142a2..74b92cd 100644
--- a/src/it/it0011-executable-dep-lib-static/pom.xml
+++ b/src/it/it0011-executable-dep-lib-static/pom.xml
@@ -29,21 +29,44 @@ under the License.
<relativePath>../it-parent/pom.xml</relativePath>
</parent>
- <artifactId>it0011-pom</artifactId>
- <packaging>pom</packaging>
+ <artifactId>it0011-executable-dep-lib-static</artifactId>
+ <packaging>nar</packaging>
<name>Maven NAR Executable and Static Library</name>
<version>1.0-SNAPSHOT</version>
<description>
Executable depending on a static library.
</description>
-
- <build>
- <defaultGoal>install</defaultGoal>
- </build>
- <modules>
- <module>executable-dep-lib-static</module>
- <module>lib-static</module>
- </modules>
+ <build>
+ <defaultGoal>integration-test</defaultGoal>
+ <plugins>
+ <plugin>
+ <artifactId>maven-nar-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <libraries>
+ <library>
+ <type>executable</type>
+ <run>true</run>
+ </library>
+ </libraries>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.its.nar</groupId>
+ <artifactId>it0010-lib-static</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
</project>