linghengqian commented on PR #20008:
URL: https://github.com/apache/shardingsphere/pull/20008#issuecomment-1380344415
@zhfeng
- What I mean is that we must improve the JDK compilation version of the
ShardingSphere project, remove all JDK 8 configurations from the existing CI
configuration, and determine what the new JDK 8-related Github Actions file
looks like. All modules seem to require changes similar to the following.
```xml
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>8</release>
</configuration>
</plugin>
</plugins>
</build>
```
- I don't use Github Actions a lot, so I don't know how to tune CI. I'm
assuming a friend will open a new PR?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]