我刚刚在STS中创建了一个新的Spring Starter项目。创建后,看到它没有完全加载为MAVEN项目。已在POM文件中看到以下错误。
项目生成错误:不可分析的POM C:\Users\salim.m2\repository\org\springframework\boot\spring-boot-starter- parent\2.3.0.RELEASE\spring-boot-starter-parent-2.3.0.RELEASE.pom:意外标记\n
不确定发生了什么。请帮我弄一下这个。
">https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 org.springframework.boot spring-boot-starter-parent 2.3.0.RELEASE com.vishnu.ws.soap hellowebservice 0.0.1-快照hellowebservice问候SOAP服务
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
发布于 2020-05-31 23:12:05
我不知道你是否正确地发布了你的pom,但它似乎是不正确的,因此给出了解析错误。显然,它缺少一些标签。对于您的案例,应该是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
</parent>
<groupId>com.vishnu.ws.soap</groupId>
<artifactId>hellowebservice</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>hellowebservice</name>
<description>SOAP Service</description>
<!-- additional lines as you have it now -->
</project>https://stackoverflow.com/questions/62116831
复制相似问题