summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/test-bundles/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2019-10-20 19:09:07 +0200
committergjoranv <gv@verizonmedia.com>2019-10-23 12:26:58 +0200
commitdd59b17378d9a5c380f305fd0865becf0fab9caf (patch)
tree46ff480984306271408c2eee5a4a0a1a1d9c8540 /bundle-plugin-test/test-bundles/pom.xml
parent4f29f8a23a3297db5b0daa5748debf898b651e6c (diff)
Add test with a bundle using artifact version as ExportPackages
- Verify that useArtifactVersionForExportPackages is honoured also for a compile scoped bundle dependency.
Diffstat (limited to 'bundle-plugin-test/test-bundles/pom.xml')
-rw-r--r--bundle-plugin-test/test-bundles/pom.xml17
1 files changed, 16 insertions, 1 deletions
diff --git a/bundle-plugin-test/test-bundles/pom.xml b/bundle-plugin-test/test-bundles/pom.xml
index 680f43ba057..b18c0b9ba3f 100644
--- a/bundle-plugin-test/test-bundles/pom.xml
+++ b/bundle-plugin-test/test-bundles/pom.xml
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<!-- Copyright 2019 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<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
@@ -43,6 +43,21 @@
</plugins>
</build>
<modules>
+ <module>artifact-version-for-exports</module>
+ <module>artifact-version-for-exports-dep</module>
<module>main</module>
</modules>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>container-dev</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <properties>
+ <maven.javadoc.skip>true</maven.javadoc.skip>
+ </properties>
</project>