<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[Heck's  Blog]]></title> 
<link>https://www.heckjj.com/index.php</link> 
<description><![CDATA[一瞬间的决定，往往可以改变很多，事实上，让自己成功的往往不是知识，是精神！ 如果你总是为自己找借口，那只好让成功推迟。执行力，今天！]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[Heck's  Blog]]></copyright>
<item>
<link>https://www.heckjj.com/post//</link>
<title><![CDATA[spring-boot-maven-plugin not found的解决方案]]></title> 
<author>Heck &lt;@hecks.tk&gt;</author>
<category><![CDATA[编程杂谈]]></category>
<pubDate>Fri, 22 May 2020 05:50:08 +0000</pubDate> 
<guid>https://www.heckjj.com/post//</guid> 
<description>
<![CDATA[ 
	通过IDE创建一个springboot项目<br/><br/>&lt;plugin&gt;<br/> &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;<br/> &lt;artifactId&gt;spring-boot-maven-plugin&lt;/artifactId&gt;//这行红色<br/>&lt;/plugin&gt;<br/><br/>提示spring-boot-maven-plugin not found。在网上找了有说是通过添加&lt;pluginRepositories&gt;过解决，但是测试之后发觉不起作用。 经过多次尝试，最终spring-boot-maven-plugin指定版本后成功解决。 修改后的pom.xml文件<br/><br/>&lt;plugin&gt;&nbsp;&nbsp;<br/> &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;&nbsp;&nbsp;<br/> &lt;artifactId&gt;spring-boot-maven-plugin&lt;/artifactId&gt;&nbsp;&nbsp;<br/> &lt;version&gt;2.1.3.RELEASE&lt;/version&gt;<br/>&lt;/plugin&gt;<br/><br/>其实说白了就是没有加上这些Maven插件的版本号，导致Maven无法自动下载插件到本地，基本上提示这个not found的错误都是这个问题引起的。<br/><br/>maven-surefire-plugin、maven-compiler-plugin<br/>这些插件也会出现这种问题，解决方案同上。只要你本地有下这些插件，不管哪个版本，就不会提示这个错误，去掉版本号也无所谓。
]]>
</description>
</item><item>
<link>https://www.heckjj.com/post//#blogcomment</link>
<title><![CDATA[[评论] spring-boot-maven-plugin not found的解决方案]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>https://www.heckjj.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>