1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<configuration>
<tasks>
<echo>${exo.directory.base}</echo>
<echo>${exo.directory.v2.x}</echo>
<echo>${exo.directory.working}</echo>
<copy todir="${exo.directory.working}/exo-tomcat/webapps">
<fileset dir="${exo.directory.v2.x}/geoserver/web/target">
<include name="**/*.war"/>
</fileset>
</copy>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin> |