This is an automated email from the ASF dual-hosted git repository.
mapohl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new fdafdaa163c [FLINK-33907][ci] Makes copying test jars being done in
the package phase
fdafdaa163c is described below
commit fdafdaa163ca1d494da2d60733d201d08cb9d7b6
Author: Matthias Pohl <[email protected]>
AuthorDate: Fri Dec 8 17:26:22 2023 +0100
[FLINK-33907][ci] Makes copying test jars being done in the package phase
This fixes the following error when compiling the test artifacts of
flink-clients:
Error: 2.054 [ERROR] Failed to execute goal
org.apache.maven.plugins:maven-dependency-plugin:3.2.0:copy-dependencies
(copy-dependencies) on project flink-clients: Artifact has not been packaged
yet. When used on reactor artifact, copy should be executed after packaging:
see MDEP-187. -> [Help 1]
---
flink-clients/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flink-clients/pom.xml b/flink-clients/pom.xml
index 9aa7fbea121..7ee19cad8cf 100644
--- a/flink-clients/pom.xml
+++ b/flink-clients/pom.xml
@@ -157,7 +157,7 @@ under the License.
<executions>
<execution>
<id>copy-dependencies</id>
-
<phase>process-test-resources</phase>
+ <phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>