Answers for "pom to move war to tomcat directory"

0

pom to move war to tomcat directory

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-war-plugin</artifactId>
	<version>2.3</version>
	<configuration>
		<warName><!-- name you want --></warName>
		<outputDirectory><!-- tomcat webapps dir --></outputDirectory>
	</configuration>
</plugin>
Posted by: Guest on April-14-2021

Code answers related to "pom to move war to tomcat directory"

Browse Popular Code Answers by Language