Skip to content

Commit e5d3162

Browse files
authored
Replaced deprecated 'tasks' with 'target' for maven-antrun-plugin (#120)
* [maven-antrun-plugin] replaced deprecated 'tasks' with 'target' * Upgrade version of maven-antrun-plugin to 3.1.0
1 parent 6cf6388 commit e5d3162

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,20 @@
5656
<plugin>
5757
<groupId>org.apache.maven.plugins</groupId>
5858
<artifactId>maven-antrun-plugin</artifactId>
59+
<version>3.1.0</version>
5960
<executions>
6061
<execution>
6162
<phase>process-test-resources</phase>
6263
<goals>
6364
<goal>run</goal>
6465
</goals>
6566
<configuration>
66-
<tasks>
67+
<target>
6768
<echo>copy proxy protocol handler</echo>
6869
<copy file="${basedir}/../pulsar-transformations/target/pulsar-transformations-${project.version}.nar" tofile="${project.build.outputDirectory}/pulsar-transformations.nar">
6970
<!-- this comment prevents mvn release plugin to wrongly reformat the pom -->
7071
</copy>
71-
</tasks>
72+
</target>
7273
</configuration>
7374
</execution>
7475
</executions>

0 commit comments

Comments
 (0)