Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-12-20 09:08:25 +0000
committerStephan Herrmann2019-12-21 13:03:35 +0000
commit3393a221971fc81b11b8c717e2b4d8ec57ce80f0 (patch)
tree79a23aee9470849299a97b3ad5108e354d13a234
parent77745aef3d0522476f7e972af1db6be761f02986 (diff)
downloadeclipse.jdt.core-3393a221971fc81b11b8c717e2b4d8ec57ce80f0.tar.gz
eclipse.jdt.core-3393a221971fc81b11b8c717e2b4d8ec57ce80f0.tar.xz
eclipse.jdt.core-3393a221971fc81b11b8c717e2b4d8ec57ce80f0.zip
Fix maven-antrun-plugin deprecation warning.I20191222-1800I20191221-2205I20191221-1800
[WARNING] Parameter tasks is deprecated, use target instead Change-Id: Ia6905b22d547fac2eb3839ddf1b6c280f3f62811 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.jdt.core/pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/pom.xml b/org.eclipse.jdt.core/pom.xml
index 7180de1a4c..438863b07e 100644
--- a/org.eclipse.jdt.core/pom.xml
+++ b/org.eclipse.jdt.core/pom.xml
@@ -34,14 +34,14 @@
<execution>
<phase>prepare-package</phase>
<configuration>
- <tasks>
+ <target>
<replace token="bundle_qualifier," value="${buildQualifier}," dir="${project.build.directory}/classes">
<include name="org/eclipse/jdt/internal/compiler/batch/messages.properties"/>
</replace>
<replace token="bundle_version" value="${unqualifiedVersion}" dir="${project.build.directory}/classes">
<include name="org/eclipse/jdt/internal/compiler/batch/messages.properties"/>
</replace>
- </tasks>
+ </target>
</configuration>
<goals>
<goal>run</goal>

Back to the top