This is an automated email from the ASF dual-hosted git repository.
ivandasch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new 025502160bf IGNITE-23679 [ducktests] Fix using dependencies from the
ignite instance under test in test runtime(#11664)
025502160bf is described below
commit 025502160bfc9476ed09a8d4530eac695e1c6e91
Author: Sergey Korotkov <[email protected]>
AuthorDate: Tue Nov 19 22:08:01 2024 +0700
IGNITE-23679 [ducktests] Fix using dependencies from the ignite instance
under test in test runtime(#11664)
---
modules/ducktests/pom.xml | 27 ++++++++-------------------
1 file changed, 8 insertions(+), 19 deletions(-)
diff --git a/modules/ducktests/pom.xml b/modules/ducktests/pom.xml
index e5756e74872..b323561ad49 100644
--- a/modules/ducktests/pom.xml
+++ b/modules/ducktests/pom.xml
@@ -41,32 +41,31 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ignite-core</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ignite-indexing</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ignite-calcite</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ignite-control-utility</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ignite-log4j2</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.fasterxml.woodstox</groupId>
- <artifactId>woodstox-core</artifactId>
- <version>5.0.3</version>
+ <scope>provided</scope>
</dependency>
<dependency>
@@ -87,18 +86,6 @@
<version>${jackson.version}</version>
</dependency>
- <dependency>
- <groupId>org.codehaus.woodstox</groupId>
- <artifactId>stax2-api</artifactId>
- <version>3.1.4</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.htrace</groupId>
- <artifactId>htrace-core4</artifactId>
- <version>4.1.0-incubating</version>
- </dependency>
-
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
@@ -109,6 +96,7 @@
<groupId>${project.groupId}</groupId>
<artifactId>ignite-opencensus</artifactId>
<version>${project.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
@@ -138,7 +126,8 @@
<configuration>
<excludeGroupIds>${project.groupId}</excludeGroupIds>
<outputDirectory>target/libs</outputDirectory>
- <includeScope>compile</includeScope>
+ <includeScope>runtime</includeScope>
+ <excludeScope>compile</excludeScope>
<excludeTransitive>false</excludeTransitive>
</configuration>
</execution>