I have just created a new Spring Starter Project in STS. After creating, seen it is not getting fully loaded as MAVEN project. Seen the below error in POM file.
Project build error: Non-parseable 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: unexpected markup \n
Not sure what is happening. Please help me with this.
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-SNAPSHOT hellowebservice Hello SOAP Service
<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>
<parent>
tag? – Manta