淘淘商城第三天

eclipse下全文搜索关键字

 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1

解决方案:

添加编译插件:

  <build>
      <plugins>
          <plugin>
              <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
          </plugin>
      </plugins>
  </build>

项目右键Maven update——》maven clean——》maven install 就成功了

 

posted on 2017-07-30 18:08  Michael2397  阅读(403)  评论(0编辑  收藏  举报

导航