xkcoding commented on issue #21225: URL: https://github.com/apache/shardingsphere/issues/21225#issuecomment-1260371766
I have tried `./mvnw clean install -Prelease -T1C -DskipTests -D"jacoco.skip"=true -D"checkstyle.skip"=true -D"rat.skip"=true -D"maven.javadoc.skip"=true -B` ,but got failed.. <img width="677" alt="CleanShot 2022-09-28 at 11 41 45@2x" src="https://user-images.githubusercontent.com/10429917/192682483-3806d232-a86e-459f-a223-d2b20dcb408c.png"> finally I add this in root pom.xml and build successfully. ```xml <modules> <module>shardingsphere-infra</module> <module>shardingsphere-dialect-exception</module> <module>shardingsphere-sql-parser</module> <module>shardingsphere-distsql</module> <module>shardingsphere-db-protocol</module> <module>shardingsphere-mode</module> <module>shardingsphere-kernel</module> <module>shardingsphere-jdbc</module> <module>shardingsphere-proxy</module> <module>shardingsphere-features</module> <module>shardingsphere-agent</module> <!-- <module>shardingsphere-test</module>--> <module>shardingsphere-distribution</module> </modules> .... <repositories> <repository> <id>spring-snapshots</id> <url>https://repo.spring.io/snapshot</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>spring-milestones</id> <url>https://repo.spring.io/milestone</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>spring-snapshots</id> <url>https://repo.spring.io/snapshot</url> </pluginRepository> <pluginRepository> <id>spring-milestones</id> <url>https://repo.spring.io/milestone</url> </pluginRepository> </pluginRepositories> ``` -- 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]
