summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/integration-test/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/integration-test/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/integration-test/pom.xml')
-rw-r--r--bundle-plugin-test/integration-test/pom.xml23
1 files changed, 17 insertions, 6 deletions
diff --git a/bundle-plugin-test/integration-test/pom.xml b/bundle-plugin-test/integration-test/pom.xml
index 62204f23999..642d74fb0e9 100644
--- a/bundle-plugin-test/integration-test/pom.xml
+++ b/bundle-plugin-test/integration-test/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
@@ -17,11 +17,6 @@
<dependencies>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>config</artifactId>
<version>${project.version}</version>
@@ -33,6 +28,16 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-artifact</artifactId>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>com.yahoo.vespa.bundle-plugin</groupId>
@@ -40,6 +45,12 @@
<classifier>bundle</classifier>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa.bundle-plugin</groupId>
+ <artifactId>artifact-version-for-exports</artifactId>
+ <classifier>bundle</classifier>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
<build>
<plugins>