diff options
author | Alexander Kurtakov <akurtako@redhat.com> | 2014-12-09 14:48:42 +0200 |
---|---|---|
committer | Alexander Kurtakov <akurtako@redhat.com> | 2014-12-09 14:48:42 +0200 |
commit | 5c788e2ce59fb8f16823675f0775019362c777ae (patch) | |
tree | 17ae5427a1107b50939bf184355d9e2cd1274a01 /org.eclipse.jgit.java7 | |
parent | c9a5fdb3cd92d5774aa7041b9fc9fc579dc26edc (diff) | |
download | jgit-5c788e2ce59fb8f16823675f0775019362c777ae.tar.gz 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.java7')
-rw-r--r-- | org.eclipse.jgit.java7/pom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.java7/pom.xml b/org.eclipse.jgit.java7/pom.xml index 0d046ecd9a..57413fbbc7 100644 --- a/org.eclipse.jgit.java7/pom.xml +++ b/org.eclipse.jgit.java7/pom.xml @@ -106,12 +106,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> |