Commit 2ccebed6 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ added needed antrun plugin version

parent 3ecc47ce
Loading
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -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>