欢迎来到代码驿站!

Tomcat

当前位置:首页 > 服务器 > Tomcat

Maven使用tomcat8-maven-plugin插件的详细教程

时间:2021-03-02 11:47:45|栏目:Tomcat|点击:

在网上搜索一堆文章没找到解决方法,只找到了tomcat7-maven-plugin的plugin,如下:

<plugin>
 <groupId>org.apache.tomcat.maven</groupId>
 <artifactId>tomcat7-maven-plugin</artifactId>
 <version>2.2</version>
</plugin>

并没有找到tomcat8-maven-plugin的plugin,在Maven的中央仓库中根本就没有这个插件:

https://repository.apache.org/content/repositories/snapshots/org/apache/tomcat/maven/

在mvnrepository仓库中找到了一个

把上面的依赖加入到POM.XML中要么就是提示找不到该依赖,要么就是下载不下来.找了半天找到了一个解决方法,就是使用Maven中的<pluginRepositories> ,<pluginRepositories>是用来配置插件地址的,因为maven的所有功能都是使用插件来实现功能的,因此需要从特定的地址下载插件包。

在POM.XML中加入以下内容

 <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>  
	 <pluginRepository>  
		<id>beardedgeeks-releases</id>  
		<url>http://beardedgeeks.googlecode.com/svn/repository/releases</url>  
	 </pluginRepository>  
 </pluginRepositories>

加入tomcat8-maven-plugin依赖

 <plugin>
     <groupId>org.apache.tomcat.maven</groupId>
     <artifactId>tomcat8-maven-plugin</artifactId>
     <version>3.0-r1655215</version>
    </plugin>

然后就能使用tomcat8-maven-plugin插件了。

然后在网上还找到了几个有这个插件的仓库:

http://mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat8-maven-plugin/3.0-r1655215

https://svn.apache.org/repos/asf/tomcat/maven-plugin/branches/tc8.x/

https://github.com/apache/tomcat-maven-plugin

上一篇:Tomcat支持https访问的步骤讲解

栏    目:Tomcat

下一篇:Tomcat服务器图片地址中文路径问题解决办法

本文标题:Maven使用tomcat8-maven-plugin插件的详细教程

本文地址:http://www.codeinn.net/misctech/72947.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有