配置 maven-resources-plugin的时候报错显示红色,(这是解决后的截图)
解决办法,添加jar包依赖即可
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</dependency>
配置maven仓库,有兴趣的朋友可以直接拷贝使用
<!--阿里云仓库-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>https://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<!--中央仓库1-->
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this.Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
<!--中央仓库2-->
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this.Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>