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

Maven使用tomcat8-maven-plugin插件的详细教程,第1张

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

本文主要介绍一个Maven应用tomcat8-maven-plugin软件的详细示例教程,非常详细的给大家。对大家的学习、培训或者工作都有一定的参考价值,一定要朋友们参考。

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

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

没有tomcat8-maven-plugin的插件,maven的中央仓库也没有这个软件:

https://repository.Apache.org/content/repositories/snapshots/org/Apache/Tomcat/maven/

一个是在仓库里找到的

将上述依赖项添加到POM。XML要么不方便提醒您可能找不到依赖项,要么不方便免费下载。经过长时间的搜索,您找到了一个解决方案,即应用

在POM中添加以下几点。可扩展置标语言

<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

本文关于Maven应用tomcat8-maven-plugin软件的详细示例教程到此为止。关于Maven应用tomcat8-maven-plugin软件的大量信息,请搜索之前的文章或者再次访问下面的相关文章。期待大家以后有更多的应用!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/774200.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-03
下一篇 2022-05-03

发表评论

登录后才能评论

评论列表(0条)

保存