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 就成功了

淘淘商城第三天

 

相关文章:

  • 2021-08-30
  • 2021-11-14
  • 2021-04-03
  • 2021-10-15
  • 2021-08-02
  • 2021-04-30
  • 2021-07-28
  • 2021-06-14
猜你喜欢
  • 2022-02-06
  • 2021-04-26
  • 2021-05-18
  • 2021-10-17
  • 2021-10-13
相关资源
相似解决方案