300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > Maven的一个基础pom.xml文件结构

Maven的一个基础pom.xml文件结构

时间:2021-04-27 03:21:53

相关推荐

Maven的一个基础pom.xml文件结构

<?xml version="1.0" encoding="UTF-8"?><project xmlns="/POM/4.0.0" xmlns:xsi="/2001/XMLSchema-instance"xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.hrvy</groupId><artifactId>MavenProject-WebApp</artifactId><version>0.0.1-SNAPSHOT</version><packaging>war</packaging><name>MavenProject-WebApp Maven Webapp</name><!-- FIXME change it to the project's website --><url></url><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><piler.source>1.8</piler.source><piler.target>1.8</piler.target></properties><!-- 引用依赖定义 --><dependencies><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.11</version><scope>test</scope></dependency></dependencies><build><finalName>MavenProject-WebApp</finalName><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --><pluginManagement><plugins><plugin><artifactId>maven-clean-plugin</artifactId><version>3.1.0</version></plugin><plugin><artifactId>maven-resources-plugin</artifactId><version>3.0.2</version></plugin><plugin><artifactId>maven-compiler-plugin</artifactId><version>3.8.0</version></plugin><plugin><artifactId>maven-surefire-plugin</artifactId><version>2.22.1</version></plugin><plugin><artifactId>maven-war-plugin</artifactId><version>3.2.2</version></plugin><plugin><artifactId>maven-install-plugin</artifactId><version>2.5.2</version></plugin><plugin><artifactId>maven-deploy-plugin</artifactId><version>2.8.2</version></plugin></plugins></pluginManagement></build></project>

Basic POM

<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="/2001/XMLSchema-instance"xmlns="/xml/ns/javaee"xsi:schemaLocation="/xml/ns/javaee /xml/ns/javaee/web-app_2_5.xsd"id="WebApp_ID" version="2.5"><display-name>ProjName</display-name><welcome-file-list><welcome-file>index.html</welcome-file></welcome-file-list></web-app>

Basic WEB.XML 2.5

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。
相关阅读
maven pom.xml 报错

maven pom.xml 报错

2020-05-23

maven 通用pom.xml

maven 通用pom.xml

2020-11-16

@Maven pom.xml标配

@Maven pom.xml标配

2020-11-03

@Maven pom.xml标配

@Maven pom.xml标配

2023-08-03