Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2014-12-09 12:48:42 +0000
committerAlexander Kurtakov2014-12-09 12:48:42 +0000
commit5c788e2ce59fb8f16823675f0775019362c777ae (patch)
tree17ae5427a1107b50939bf184355d9e2cd1274a01 /org.eclipse.jgit/pom.xml
parentc9a5fdb3cd92d5774aa7041b9fc9fc579dc26edc (diff)
downloadjgit-5c788e2ce59fb8f16823675f0775019362c777ae.tar.gz
jgit-5c788e2ce59fb8f16823675f0775019362c777ae.tar.xz
jgit-5c788e2ce59fb8f16823675f0775019362c777ae.zip
Do not use deprecated tasks in maven-antrun-plugin.
Maven-antrun-plugin deprecated tasks in favor of target, this patch fixes JGit poms to do the same. Change-Id: I420fd2ce88c61cf8e786ed45fbb8235dc30c124e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.jgit/pom.xml')
-rw-r--r--org.eclipse.jgit/pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/pom.xml b/org.eclipse.jgit/pom.xml
index 33cd02df66..1ceafe5eba 100644
--- a/org.eclipse.jgit/pom.xml
+++ b/org.eclipse.jgit/pom.xml
@@ -111,12 +111,12 @@
<id>translate-source-qualifier</id>
<phase>generate-resources</phase>
<configuration>
- <tasks>
+ <target>
<copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/>
<replace file="${source-bundle-manifest}">
<replacefilter token=".qualifier" value=".${maven.build.timestamp}"/>
</replace>
- </tasks>
+ </target>
</configuration>
<goals>
<goal>run</goal>

Back to the top