O2OA编译报错的问题

O2OA6.3在idea编译模块时报错

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile) on project xxxx: Compilation failure

将idea的jdk版本改为11,pom.xml中也要同步更改

  <plugin>  
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-compiler-plugin</artifactId>  
        <configuration>  
          <source>11</source>  
          <target>11</target>  
        </configuration>  
      </plugin>  
上一篇:maven 实用标签记录


下一篇:第一