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 1533891df0d18558af807376922def917e44028b..1016d6cb68c403748456bbb9b6d54ec8921e043c 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>