fix/19854 #9

Manually merged
manuele.simi merged 3 commits from fix/19854 into master 2020-10-07 15:48:30 +02:00
1 changed files with 17 additions and 17 deletions
Showing only changes of commit b8437f7047 - Show all commits

34
pom.xml
View File

@ -897,28 +897,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<version>3.0.0</version>
<executions>
<execution>
<id>print</id>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>******** Displaying value of *.outputDirectory properties ********</echo>
<echo>project.metainf.outputDirectory=${project.metainf.outputDirectory}</echo>
<echo>project.webinf.outputDirectory=${project.webinf.outputDirectory}</echo>
</tasks>
</configuration>
</execution>
<execution>
<id>set-vars</id>
<phase>validate</phase>
<phase>generate-resources</phase>
<configuration>
<exportAntProperties>true</exportAntProperties>
<target>
<target name="seOuttputDirectories">
<condition property="isService">
<contains string="${project.packaging}" substring="war" />
</condition>
@ -943,6 +929,20 @@
<goal>run</goal>
</goals>
</execution>
<execution>
<id>print</id>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target name="printOutputDirectories">
<echo>******** Displaying value of *.outputDirectory properties ********</echo>
<echo>project.metainf.outputDirectory=${project.metainf.outputDirectory}</echo>
<echo>project.webinf.outputDirectory=${project.webinf.outputDirectory}</echo>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>