Maven Non-parseable POM for spring-boot-dependenciesHow do I tell Maven to use the latest version of a dependency?How can I create an executable JAR with dependencies using Maven?Differences between dependencyManagement and dependencies in MavenMaven: why does it contain a seemingly broken schemaLocation?Migrating existing jersey postgres app to spring bootspring boot app - beanUtils not foundWhile deploying spring project I am getting dependency injection errorSpring boot application as dependencySpring Boot Maven compile throws start tag not allowed in epilogSpring Boot (jar) + JSF without web.xml

What is the purpose of building foundations?

If Boris Johnson were prosecuted and convicted of lying about Brexit, can that be used to cancel Brexit?

Past participle agreement with the subject in the case of pronominal verbs

Is the decompression of compressed and encrypted data without decryption also theoretically impossible?

Did thousands of women die every year due to illegal abortions before Roe v. Wade?

How to make thick Asian sauces?

Linux tr to convert vertical text to horizontal

How much water is needed to create a Katana capable of cutting flesh, bones and wood?

Traffic law UK, pedestrians

Riley's, assemble!

How can Iron Man's suit withstand this?

Does the growth of home value benefit from compound interest?

Did Darth Vader wear the same suit for 20+ years?

Chopin: marche funèbre bar 15 impossible place

Do adult Russians normally hand-write Cyrillic as cursive or as block letters?

What are the words for people who cause trouble believing they know better?

Do I include animal companions when calculating difficulty of an encounter?

How to pass a regex when finding a directory path in bash?

3 as a Sum of 3 Pan Digital Expressions

Why don't B747s start takeoffs with full throttle?

Movie where a boy is transported into the future by an alien spaceship

Personalization conditions switching doesn`t work in Experience Editor (9.1.0, Initial Release)

Working in the USA for living expenses only; allowed on VWP?

Applicants clearly not having the skills they advertise



Maven Non-parseable POM for spring-boot-dependencies


How do I tell Maven to use the latest version of a dependency?How can I create an executable JAR with dependencies using Maven?Differences between dependencyManagement and dependencies in MavenMaven: why does it contain a seemingly broken schemaLocation?Migrating existing jersey postgres app to spring bootspring boot app - beanUtils not foundWhile deploying spring project I am getting dependency injection errorSpring boot application as dependencySpring Boot Maven compile throws start tag not allowed in epilogSpring Boot (jar) + JSF without web.xml






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















Trying to setup an elementary Spring boot app, using Win10, Eclipse (Photon 4.8.0), maven 3.5.3 within Eclipse, and following this tutorial



The error is the following :



Non-parseable POM C:Usersuser.m2repositoryorgspringframeworkbootspring-boot-dependencies2.1.3.RELEASEspring-boot-dependencies-2.1.3.RELEASE.pom: in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2)



I've tried various suggestions such as clearing cache, checking the encoding, etc. but as a beginner I have no idea where to look at



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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.myproject</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>


<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>









share|improve this question






















  • Have you tried deleting your local Maven repository directory, "C:Usersuser.m2", and then rebuilding?

    – ck1
    Mar 24 at 13:28











  • Delete your local cache and turn on checksum policy and rebuild... blog.soebes.de/blog/2018/10/13/maven-artifact-checksums-what

    – khmarbaise
    Mar 24 at 13:44











  • @ck1 yep I have tried that

    – Temps
    Mar 24 at 21:44











  • @khmarbaise this solutions suggests to edit the settings.xml file (I'm discovering what this is as we speak), I have no settings.xml because it is not created by default, can you tell me more about this file and what if I create one manually with only the tags I about the checksum policy ?

    – Temps
    Mar 24 at 21:44











  • @Temps Read the link I've posted.

    – khmarbaise
    Mar 24 at 21:51

















0















Trying to setup an elementary Spring boot app, using Win10, Eclipse (Photon 4.8.0), maven 3.5.3 within Eclipse, and following this tutorial



The error is the following :



Non-parseable POM C:Usersuser.m2repositoryorgspringframeworkbootspring-boot-dependencies2.1.3.RELEASEspring-boot-dependencies-2.1.3.RELEASE.pom: in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2)



I've tried various suggestions such as clearing cache, checking the encoding, etc. but as a beginner I have no idea where to look at



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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.myproject</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>


<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>









share|improve this question






















  • Have you tried deleting your local Maven repository directory, "C:Usersuser.m2", and then rebuilding?

    – ck1
    Mar 24 at 13:28











  • Delete your local cache and turn on checksum policy and rebuild... blog.soebes.de/blog/2018/10/13/maven-artifact-checksums-what

    – khmarbaise
    Mar 24 at 13:44











  • @ck1 yep I have tried that

    – Temps
    Mar 24 at 21:44











  • @khmarbaise this solutions suggests to edit the settings.xml file (I'm discovering what this is as we speak), I have no settings.xml because it is not created by default, can you tell me more about this file and what if I create one manually with only the tags I about the checksum policy ?

    – Temps
    Mar 24 at 21:44











  • @Temps Read the link I've posted.

    – khmarbaise
    Mar 24 at 21:51













0












0








0








Trying to setup an elementary Spring boot app, using Win10, Eclipse (Photon 4.8.0), maven 3.5.3 within Eclipse, and following this tutorial



The error is the following :



Non-parseable POM C:Usersuser.m2repositoryorgspringframeworkbootspring-boot-dependencies2.1.3.RELEASEspring-boot-dependencies-2.1.3.RELEASE.pom: in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2)



I've tried various suggestions such as clearing cache, checking the encoding, etc. but as a beginner I have no idea where to look at



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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.myproject</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>


<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>









share|improve this question














Trying to setup an elementary Spring boot app, using Win10, Eclipse (Photon 4.8.0), maven 3.5.3 within Eclipse, and following this tutorial



The error is the following :



Non-parseable POM C:Usersuser.m2repositoryorgspringframeworkbootspring-boot-dependencies2.1.3.RELEASEspring-boot-dependencies-2.1.3.RELEASE.pom: in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2)



I've tried various suggestions such as clearing cache, checking the encoding, etc. but as a beginner I have no idea where to look at



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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.myproject</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>


<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>






java spring maven dependencies pom.xml






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 13:24









TempsTemps

32




32












  • Have you tried deleting your local Maven repository directory, "C:Usersuser.m2", and then rebuilding?

    – ck1
    Mar 24 at 13:28











  • Delete your local cache and turn on checksum policy and rebuild... blog.soebes.de/blog/2018/10/13/maven-artifact-checksums-what

    – khmarbaise
    Mar 24 at 13:44











  • @ck1 yep I have tried that

    – Temps
    Mar 24 at 21:44











  • @khmarbaise this solutions suggests to edit the settings.xml file (I'm discovering what this is as we speak), I have no settings.xml because it is not created by default, can you tell me more about this file and what if I create one manually with only the tags I about the checksum policy ?

    – Temps
    Mar 24 at 21:44











  • @Temps Read the link I've posted.

    – khmarbaise
    Mar 24 at 21:51

















  • Have you tried deleting your local Maven repository directory, "C:Usersuser.m2", and then rebuilding?

    – ck1
    Mar 24 at 13:28











  • Delete your local cache and turn on checksum policy and rebuild... blog.soebes.de/blog/2018/10/13/maven-artifact-checksums-what

    – khmarbaise
    Mar 24 at 13:44











  • @ck1 yep I have tried that

    – Temps
    Mar 24 at 21:44











  • @khmarbaise this solutions suggests to edit the settings.xml file (I'm discovering what this is as we speak), I have no settings.xml because it is not created by default, can you tell me more about this file and what if I create one manually with only the tags I about the checksum policy ?

    – Temps
    Mar 24 at 21:44











  • @Temps Read the link I've posted.

    – khmarbaise
    Mar 24 at 21:51
















Have you tried deleting your local Maven repository directory, "C:Usersuser.m2", and then rebuilding?

– ck1
Mar 24 at 13:28





Have you tried deleting your local Maven repository directory, "C:Usersuser.m2", and then rebuilding?

– ck1
Mar 24 at 13:28













Delete your local cache and turn on checksum policy and rebuild... blog.soebes.de/blog/2018/10/13/maven-artifact-checksums-what

– khmarbaise
Mar 24 at 13:44





Delete your local cache and turn on checksum policy and rebuild... blog.soebes.de/blog/2018/10/13/maven-artifact-checksums-what

– khmarbaise
Mar 24 at 13:44













@ck1 yep I have tried that

– Temps
Mar 24 at 21:44





@ck1 yep I have tried that

– Temps
Mar 24 at 21:44













@khmarbaise this solutions suggests to edit the settings.xml file (I'm discovering what this is as we speak), I have no settings.xml because it is not created by default, can you tell me more about this file and what if I create one manually with only the tags I about the checksum policy ?

– Temps
Mar 24 at 21:44





@khmarbaise this solutions suggests to edit the settings.xml file (I'm discovering what this is as we speak), I have no settings.xml because it is not created by default, can you tell me more about this file and what if I create one manually with only the tags I about the checksum policy ?

– Temps
Mar 24 at 21:44













@Temps Read the link I've posted.

– khmarbaise
Mar 24 at 21:51





@Temps Read the link I've posted.

– khmarbaise
Mar 24 at 21:51












1 Answer
1






active

oldest

votes


















0














in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2 :



You should re-check your pom (spring-boot-dependencies-2.1.3.RELEASE.pom), i think that you have the character 's'
after the tag : </project>






share|improve this answer

























  • Is this an issue with the encoding ? If I write any character after </project>, the error will indicate that the file ends with </project>blahblah, no 's' character. I've opened the pom.xml file with notepadd++ and tried to save it with different encoding (UTF8, UTF8 BOM), but the error is still there

    – Temps
    Mar 24 at 13:47












  • i have edited my answer, i thinks that the file spring-boot-dependencies-2.1.3.RELEASE is corrupted try delete it from your .m2 folder letting Maven redownload it on the next build.

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • Other ways this issue could occur is if you have an old Maven version

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • @AbdessattarNOISSI has nothing to do with an old Maven version. This is based on network issues and a corrupted pom/jar file or multiple of them...

    – khmarbaise
    Mar 24 at 15:06











  • Hey thanks for your replies. I use the maven within eclipse (3.5.3). I've emptied the .m2 directory, reloaded Eclipse, now the error is about glassfishjerseyjersey-bom and fasterxml/jackson/jackson-parent can not have PITarget with reserved xml name. Again I have no idea what I'm looking at nor how to play around with maven settings. Thx for your help !

    – Temps
    Mar 24 at 20:37












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55324256%2fmaven-non-parseable-pom-for-spring-boot-dependencies%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2 :



You should re-check your pom (spring-boot-dependencies-2.1.3.RELEASE.pom), i think that you have the character 's'
after the tag : </project>






share|improve this answer

























  • Is this an issue with the encoding ? If I write any character after </project>, the error will indicate that the file ends with </project>blahblah, no 's' character. I've opened the pom.xml file with notepadd++ and tried to save it with different encoding (UTF8, UTF8 BOM), but the error is still there

    – Temps
    Mar 24 at 13:47












  • i have edited my answer, i thinks that the file spring-boot-dependencies-2.1.3.RELEASE is corrupted try delete it from your .m2 folder letting Maven redownload it on the next build.

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • Other ways this issue could occur is if you have an old Maven version

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • @AbdessattarNOISSI has nothing to do with an old Maven version. This is based on network issues and a corrupted pom/jar file or multiple of them...

    – khmarbaise
    Mar 24 at 15:06











  • Hey thanks for your replies. I use the maven within eclipse (3.5.3). I've emptied the .m2 directory, reloaded Eclipse, now the error is about glassfishjerseyjersey-bom and fasterxml/jackson/jackson-parent can not have PITarget with reserved xml name. Again I have no idea what I'm looking at nor how to play around with maven settings. Thx for your help !

    – Temps
    Mar 24 at 20:37
















0














in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2 :



You should re-check your pom (spring-boot-dependencies-2.1.3.RELEASE.pom), i think that you have the character 's'
after the tag : </project>






share|improve this answer

























  • Is this an issue with the encoding ? If I write any character after </project>, the error will indicate that the file ends with </project>blahblah, no 's' character. I've opened the pom.xml file with notepadd++ and tried to save it with different encoding (UTF8, UTF8 BOM), but the error is still there

    – Temps
    Mar 24 at 13:47












  • i have edited my answer, i thinks that the file spring-boot-dependencies-2.1.3.RELEASE is corrupted try delete it from your .m2 folder letting Maven redownload it on the next build.

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • Other ways this issue could occur is if you have an old Maven version

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • @AbdessattarNOISSI has nothing to do with an old Maven version. This is based on network issues and a corrupted pom/jar file or multiple of them...

    – khmarbaise
    Mar 24 at 15:06











  • Hey thanks for your replies. I use the maven within eclipse (3.5.3). I've emptied the .m2 directory, reloaded Eclipse, now the error is about glassfishjerseyjersey-bom and fasterxml/jackson/jackson-parent can not have PITarget with reserved xml name. Again I have no idea what I'm looking at nor how to play around with maven settings. Thx for your help !

    – Temps
    Mar 24 at 20:37














0












0








0







in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2 :



You should re-check your pom (spring-boot-dependencies-2.1.3.RELEASE.pom), i think that you have the character 's'
after the tag : </project>






share|improve this answer















in epilog non whitespace content is not allowed but got s (position: END_TAG seen ...</build>n</project>ns... @3189:2 :



You should re-check your pom (spring-boot-dependencies-2.1.3.RELEASE.pom), i think that you have the character 's'
after the tag : </project>







share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 24 at 13:59

























answered Mar 24 at 13:35









Abdessattar NOISSIAbdessattar NOISSI

17618




17618












  • Is this an issue with the encoding ? If I write any character after </project>, the error will indicate that the file ends with </project>blahblah, no 's' character. I've opened the pom.xml file with notepadd++ and tried to save it with different encoding (UTF8, UTF8 BOM), but the error is still there

    – Temps
    Mar 24 at 13:47












  • i have edited my answer, i thinks that the file spring-boot-dependencies-2.1.3.RELEASE is corrupted try delete it from your .m2 folder letting Maven redownload it on the next build.

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • Other ways this issue could occur is if you have an old Maven version

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • @AbdessattarNOISSI has nothing to do with an old Maven version. This is based on network issues and a corrupted pom/jar file or multiple of them...

    – khmarbaise
    Mar 24 at 15:06











  • Hey thanks for your replies. I use the maven within eclipse (3.5.3). I've emptied the .m2 directory, reloaded Eclipse, now the error is about glassfishjerseyjersey-bom and fasterxml/jackson/jackson-parent can not have PITarget with reserved xml name. Again I have no idea what I'm looking at nor how to play around with maven settings. Thx for your help !

    – Temps
    Mar 24 at 20:37


















  • Is this an issue with the encoding ? If I write any character after </project>, the error will indicate that the file ends with </project>blahblah, no 's' character. I've opened the pom.xml file with notepadd++ and tried to save it with different encoding (UTF8, UTF8 BOM), but the error is still there

    – Temps
    Mar 24 at 13:47












  • i have edited my answer, i thinks that the file spring-boot-dependencies-2.1.3.RELEASE is corrupted try delete it from your .m2 folder letting Maven redownload it on the next build.

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • Other ways this issue could occur is if you have an old Maven version

    – Abdessattar NOISSI
    Mar 24 at 14:01











  • @AbdessattarNOISSI has nothing to do with an old Maven version. This is based on network issues and a corrupted pom/jar file or multiple of them...

    – khmarbaise
    Mar 24 at 15:06











  • Hey thanks for your replies. I use the maven within eclipse (3.5.3). I've emptied the .m2 directory, reloaded Eclipse, now the error is about glassfishjerseyjersey-bom and fasterxml/jackson/jackson-parent can not have PITarget with reserved xml name. Again I have no idea what I'm looking at nor how to play around with maven settings. Thx for your help !

    – Temps
    Mar 24 at 20:37

















Is this an issue with the encoding ? If I write any character after </project>, the error will indicate that the file ends with </project>blahblah, no 's' character. I've opened the pom.xml file with notepadd++ and tried to save it with different encoding (UTF8, UTF8 BOM), but the error is still there

– Temps
Mar 24 at 13:47






Is this an issue with the encoding ? If I write any character after </project>, the error will indicate that the file ends with </project>blahblah, no 's' character. I've opened the pom.xml file with notepadd++ and tried to save it with different encoding (UTF8, UTF8 BOM), but the error is still there

– Temps
Mar 24 at 13:47














i have edited my answer, i thinks that the file spring-boot-dependencies-2.1.3.RELEASE is corrupted try delete it from your .m2 folder letting Maven redownload it on the next build.

– Abdessattar NOISSI
Mar 24 at 14:01





i have edited my answer, i thinks that the file spring-boot-dependencies-2.1.3.RELEASE is corrupted try delete it from your .m2 folder letting Maven redownload it on the next build.

– Abdessattar NOISSI
Mar 24 at 14:01













Other ways this issue could occur is if you have an old Maven version

– Abdessattar NOISSI
Mar 24 at 14:01





Other ways this issue could occur is if you have an old Maven version

– Abdessattar NOISSI
Mar 24 at 14:01













@AbdessattarNOISSI has nothing to do with an old Maven version. This is based on network issues and a corrupted pom/jar file or multiple of them...

– khmarbaise
Mar 24 at 15:06





@AbdessattarNOISSI has nothing to do with an old Maven version. This is based on network issues and a corrupted pom/jar file or multiple of them...

– khmarbaise
Mar 24 at 15:06













Hey thanks for your replies. I use the maven within eclipse (3.5.3). I've emptied the .m2 directory, reloaded Eclipse, now the error is about glassfishjerseyjersey-bom and fasterxml/jackson/jackson-parent can not have PITarget with reserved xml name. Again I have no idea what I'm looking at nor how to play around with maven settings. Thx for your help !

– Temps
Mar 24 at 20:37






Hey thanks for your replies. I use the maven within eclipse (3.5.3). I've emptied the .m2 directory, reloaded Eclipse, now the error is about glassfishjerseyjersey-bom and fasterxml/jackson/jackson-parent can not have PITarget with reserved xml name. Again I have no idea what I'm looking at nor how to play around with maven settings. Thx for your help !

– Temps
Mar 24 at 20:37




















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55324256%2fmaven-non-parseable-pom-for-spring-boot-dependencies%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript