From 2ccebed6946bca2ef55db5e1801b4e39cc75bde1 Mon Sep 17 00:00:00 2001
From: Philip Makedonski <makedonski@informatik.uni-goettingen.de>
Date: Thu, 15 Feb 2024 18:51:47 +0100
Subject: [PATCH] + added needed antrun plugin version

---
 .../dependencies/pom.xml                          | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/plugins/org.etsi.mts.tdl.extras.yang.tools.wrapper.mvn/dependencies/pom.xml b/plugins/org.etsi.mts.tdl.extras.yang.tools.wrapper.mvn/dependencies/pom.xml
index 1533891..1016d6c 100644
--- a/plugins/org.etsi.mts.tdl.extras.yang.tools.wrapper.mvn/dependencies/pom.xml
+++ b/plugins/org.etsi.mts.tdl.extras.yang.tools.wrapper.mvn/dependencies/pom.xml
@@ -79,22 +79,25 @@
 			</plugin>
 			<plugin>
 				<artifactId>maven-antrun-plugin</artifactId>
+                <version>3.1.0</version>
 				<executions>
 					<execution>
+						<id>fix-manifest</id>
 						<phase>test</phase>
+						<goals>
+							<goal>run</goal>
+						</goals>
 						<configuration>
+                            <!-- <tasks>
+                                <echo>Update MANIFEST: ${project.build.outputDirectory}/META-INF/MANIFEST.MF</echo>
+                                <echo>Replace ${classpath.placeholder} with ,${line.separator} </echo>
+                            </tasks> -->
 							<target>
-								<!--
-								<replace file="classpath.properties"
-								-->
 								<replace file="${project.build.outputDirectory}/META-INF/MANIFEST.MF" 
 									token="${classpath.placeholder}"
 									value=",${line.separator} " />
 							</target>
 						</configuration>
-						<goals>
-							<goal>run</goal>
-						</goals>
 					</execution>
 				</executions>
 			</plugin>
-- 
GitLab