在maven项目pom.xml中添加tomcat插件

 1 <build>
 2 <!--插件 -->
 3 <plugins>
 4 <plugin>
 5 <groupId>org.apache.tomcat.maven</groupId>
 6 <artifactId>tomcat7-maven-plugin</artifactId>
 7 <version>2.2</version>
 8 <configuration>
 9 <!--端口号 -->
10 <port>8090</port>
11 <!--项目访问的根目录
12 url:localhost:8090/项目名称/addUser.action
13 -->
14 <path>/</path>
15 </configuration>
16 </plugin>
17 </plugins>
18 </build>

原文地址:https://www.cnblogs.com/pxffly/p/8257810.html

时间: 2024-10-09 03:50:26

在maven项目pom.xml中添加tomcat插件的相关文章

(转)如何在maven的pom.xml中添加本地jar包

1 maven本地仓库认识 maven本地仓库中的jar目录一般分为三层:图中的1 2 3分别如下所示: 1 groupId 2 artifactId 3 version 4 jar包的依赖 如果要将maven本地仓库中的jar包添加到项目中,直接打开4 xx.pom文件,将改jar包的相关依赖复制pom.xml文件中即可. 2 将本地jar包添加到本地仓库 2.1 添加jar到本地仓库 原则上Maven的设计是不需要这么做的,因为pom.xml中依赖的jar包会自动实现从中央仓库下载到本地仓库

maven的pom.xml中添加想要的jar包

以前都是在网上或者公司仓库里面查找pom.xml依赖包,今天学会了新的添加方法

pom.xml中添加远程仓库

maven的pom.xml中添加远程仓库 <repositories> <repository> <id>mvnrepository</id> <name>mvnrepository</name> <url>http://www.mvnrepository.com/</url> <layout>default</layout> <releases> <enabled&g

maven项目pom.xml第一行报错

maven项目pom.xml第一行报错 这是第一行:<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd&q

eclipse中基于maven构建的web项目pom.xml中指定的jar包无法发布到tomcat中

eclipse运行maven web项目报错: 信息: Starting Servlet Engine: Apache Tomcat/7.0.57 一月 07, 2015 11:50:44 下午 org.apache.catalina.core.ContainerBase startInternal 严重: A child container failed during start java.util.concurrent.ExecutionException: org.apache.catal

maven的pom.xml中出现Multiple annotations found at this line:错误

一般这个错误出现在pom.xml的第一行,出错信息如下: Multiple annotations found at this line: - Missing artifact stax:stax-api:jar:1.0.1 - ArtifactTransferException: Failure to transfer stax:stax-api:jar:1.0.1 from http://dist.codehaus.org/ was cached in the local repositor

Maven pom.xml中添加指定的中央仓库

中央仓库就是Maven的一个默认的远程仓库,Maven的安装文件中自带了中央仓库的配置($M2_HOME/lib/maven-model-builder.jar) 在很多情况下,默认的中央仓库无法满足项目的需求,可能项目需要的jar包存在另一个远程仓库中,这时就可以在pom.xml文件中配置仓库,代码如下: <repositories> <repository> <!-- Maven 自带的中央仓库使用的Id为central 如果其他的仓库声明也是用该Id 就会覆盖中央仓库的

eclipse中Maven项目pom.xml报错:com.thoughtworks.xstream.io.HierarchicalStreamDriver

解决方法: 把本地MAVEN库的该jar相关信息先删除,然后通过MAVEN重新构造一次即可 1.如下图我的本地Maven库关于 xstream包,删除红色框中的包! 2.然后新建一个maven项目,在pom中配置依赖: <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.3</

新建maven项目pom.xml文件报错

1.背景交代 新建了一个练手的项目,准备了解一下springBoot的使用(之前没有用过springBoot),百度了一下springBoot教程发现大多数使用maven来管理jar包的引入.因此顺带学习了一下maven,以此贴记录我在使用maven过程中所遇到的一串问题以及解决的办法. 2.所遇问题 myeclipse直接创建maven project,创建成功之后发现pom.xml文件报错,报错的内容是: Could not calculate build plan: Plugin org.