簡體   English   中英

當我第一次創建一個 Maven 項目時,它在我的 pom.xml 文件中顯示錯誤,錯誤是:

[英]when i created a maven project for the first time it shows me error in my pom.xml file the error is :

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.pranik</groupId>
<artifactId>ServletJspDemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>

<name>A custom project</name>
<url>http://www.haoxuer.com</url>

 

<dependencies>


    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
    
</dependencies>

Maven 無法加載插件可能是由於 Web Module 的版本較低。

嘗試在 pom.xml 中添加插件並更新 Maven 項目。 希望它有效。

<build>
   <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>3.3.1</version>
        </plugin>
    </plugins>
    <finalName>test</finalName>
  </build>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM