Skip to content

Commit e285996

Browse files
committed
Update antrun plugin
1 parent 5cc02cf commit e285996

File tree

2 files changed

+6
-6
lines changed
  • org.thymeleaf.extras.eclipse.repository.composite
  • org.thymeleaf.extras.eclipse.repository

2 files changed

+6
-6
lines changed

org.thymeleaf.extras.eclipse.repository.composite/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
<plugins>
2626
<plugin>
2727
<artifactId>maven-antrun-plugin</artifactId>
28-
<version>1.7</version>
28+
<version>3.0.0</version>
2929
<executions>
3030
<execution>
3131
<phase>package</phase>
3232
<configuration>
33-
<tasks>
33+
<target>
3434
<mkdir dir="${composite-repository}"/>
3535
<copy todir="${composite-repository}">
3636
<fileset dir="${project.basedir}">
@@ -43,7 +43,7 @@
4343
</filterset>
4444
</copy>
4545
<replace dir="${composite-repository}" token="-SNAPSHOT"/>
46-
</tasks>
46+
</target>
4747
</configuration>
4848
<goals>
4949
<goal>run</goal>

org.thymeleaf.extras.eclipse.repository/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@
2626
<plugins>
2727
<plugin>
2828
<artifactId>maven-antrun-plugin</artifactId>
29-
<version>1.7</version>
29+
<version>3.0.0</version>
3030
<executions>
3131
<execution>
3232
<phase>package</phase>
3333
<configuration>
34-
<tasks>
34+
<target>
3535
<mkdir dir="${repository.update-site}"/>
3636
<copy file="${project.basedir}/p2.index" todir="${repository.update-site}"/>
3737
<copy todir="${repository.update-site}">
3838
<fileset dir="${project.build.directory}/repository" includes="**/*"/>
3939
</copy>
4040
<copy file="${project.build.directory}/${project.artifactId}-${project.version}.zip"
4141
tofile="${repository}/${thymeleaf.plugin-name}-${project.version}.zip"/>
42-
</tasks>
42+
</target>
4343
</configuration>
4444
<goals>
4545
<goal>run</goal>

0 commit comments

Comments
 (0)