Maven配置Tomcat8插件,tomcat8-maven-plugin

毛弘博
2023-12-01

pom.xml中配置tomcat8-maven-plugin

<plugin>
	<groupId>org.apache.tomcat.maven</groupId>
	<artifactId>tomcat8-maven-plugin</artifactId>
	<version>3.0-r1655215</version>
	<configuration>
	    <!-- 通过maven tomcat8:run运行项目时,访问项目的端口号 -->
	    <port>80</port>
	    <!-- 项目访问路径  本例:localhost:9090,  如果配置的aa, 则访问路径为localhost:9090/aa-->
	    <path>/travel</path>
	</configuration>
</plugin>

pom.xml中配置Tomcat8.x的仓库

 <!--配置Tomcat8仓库-->
 <pluginRepositories>
     <pluginRepository>
         <id>alfresco-public</id>
         <url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
     </pluginRepository>
     <pluginRepository>
         <id>alfresco-public-snapshots</id>
         <url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>
         <snapshots>
             <enabled>true</enabled>
             <updatePolicy>daily</updatePolicy>
         </snapshots>
     </pluginRepository>
     <!--这个google的用不了-->
     <!--<pluginRepository>
         <id>beardedgeeks-releases</id>
         <url>http://beardedgeeks.googlecode.com/svn/repository/releases</url>
     </pluginRepository>-->
 </pluginRepositories>
 类似资料: