This is an automated email from the ASF dual-hosted git repository.
av 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 72b0d613e05 IGNITE-19237 Dependency copying should happed on package
phase instead of test-compile (#10626)
72b0d613e05 is described below
commit 72b0d613e053bf82dabdd96efc6d6cb86c36e558
Author: Anton Vinogradov <[email protected]>
AuthorDate: Fri Apr 7 11:35:44 2023 +0300
IGNITE-19237 Dependency copying should happed on package phase instead of
test-compile (#10626)
---
modules/ducktests/pom.xml | 2 +-
modules/sqlline/pom.xml | 2 +-
parent/pom.xml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/ducktests/pom.xml b/modules/ducktests/pom.xml
index 13d3a47ee02..8ee6628000a 100644
--- a/modules/ducktests/pom.xml
+++ b/modules/ducktests/pom.xml
@@ -153,7 +153,7 @@
<executions>
<execution>
<id>copy-libs</id>
- <phase>test-compile</phase>
+ <phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
diff --git a/modules/sqlline/pom.xml b/modules/sqlline/pom.xml
index ebb87f07c4b..bc43c6a241b 100644
--- a/modules/sqlline/pom.xml
+++ b/modules/sqlline/pom.xml
@@ -50,7 +50,7 @@
<executions>
<execution>
<id>copy-libs</id>
- <phase>test-compile</phase>
+ <phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
diff --git a/parent/pom.xml b/parent/pom.xml
index 1cb6d874467..71730159b9f 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -597,7 +597,7 @@
<executions>
<execution>
<id>copy-libs</id>
- <phase>test-compile</phase>
+ <phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>