Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2022-11-29 18:46:41 +01:00
commit 26af094f08
No known key found for this signature in database
GPG Key ID: 1677D141BCF3584D
1 changed files with 13 additions and 1 deletions

View File

@ -53,7 +53,7 @@
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>init-jetty-sources-dir</id>
<id>create-sources-dir</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
@ -64,6 +64,18 @@
</target>
</configuration>
</execution>
<execution>
<id>delete-sources-dir</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<delete dir="${sources-directory}" failonerror="false" />
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>