1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-01 21:35:40 +02:00

Move away of deprecated tasks in maven-antrun-plugin configs.

Change-Id: Ife9d0198723d08759f08f074909b3fe2c7f62eaf
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
This commit is contained in:
Alexander Kurtakov 2020-02-05 21:29:48 +02:00
parent 6a8d73bdde
commit eb1b8a0dc3
3 changed files with 10 additions and 10 deletions

View file

@ -26,12 +26,12 @@
<execution> <execution>
<phase>generate-sources</phase> <phase>generate-sources</phase>
<configuration> <configuration>
<tasks> <target>
<!-- Run yarn via ant so that we can share the same (small) xml file <!-- Run yarn via ant so that we can share the same (small) xml file
for building within eclipse as with tycho --> for building within eclipse as with tycho -->
<ant antfile="BuildDebugServers.xml" <ant antfile="BuildDebugServers.xml"
target="BuildDebugServers" /> target="BuildDebugServers" />
</tasks> </target>
</configuration> </configuration>
<goals> <goals>
<goal>run</goal> <goal>run</goal>

View file

@ -30,9 +30,9 @@
<id>clean</id> <id>clean</id>
<phase>clean</phase> <phase>clean</phase>
<configuration> <configuration>
<tasks> <target>
<ant antfile="TestAppBuilder.xml" target="clean"/> <ant antfile="TestAppBuilder.xml" target="clean"/>
</tasks> </target>
</configuration> </configuration>
<goals> <goals>
<goal>run</goal> <goal>run</goal>
@ -42,9 +42,9 @@
<id>prepare</id> <id>prepare</id>
<phase>pre-integration-test</phase> <phase>pre-integration-test</phase>
<configuration> <configuration>
<tasks> <target>
<ant antfile="TestAppBuilder.xml" target="makeTestApps"/> <ant antfile="TestAppBuilder.xml" target="makeTestApps"/>
</tasks> </target>
</configuration> </configuration>
<goals> <goals>
<goal>run</goal> <goal>run</goal>

View file

@ -30,9 +30,9 @@
<id>clean</id> <id>clean</id>
<phase>clean</phase> <phase>clean</phase>
<configuration> <configuration>
<tasks> <target>
<ant antfile="../../dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/TestAppBuilder.xml" target="clean"/> <ant antfile="../../dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/TestAppBuilder.xml" target="clean"/>
</tasks> </target>
</configuration> </configuration>
<goals> <goals>
<goal>run</goal> <goal>run</goal>
@ -42,9 +42,9 @@
<id>prepare</id> <id>prepare</id>
<phase>pre-integration-test</phase> <phase>pre-integration-test</phase>
<configuration> <configuration>
<tasks> <target>
<ant antfile="../../dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/TestAppBuilder.xml" target="makeTestApps"/> <ant antfile="../../dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/TestAppBuilder.xml" target="makeTestApps"/>
</tasks> </target>
</configuration> </configuration>
<goals> <goals>
<goal>run</goal> <goal>run</goal>