-
Notifications
You must be signed in to change notification settings - Fork 583
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Error Compiling with mvn compile
or mvn install
#166
Comments
同样遇到该问题:使用mvn install和mvn compile时均报该错误。mvn package可以正常运行 |
mvn compile
or mvn install
我IDEA和本地maven都是3.6.3的,也是一样不行,发现qsql-calcite-parser这个模块里的pom.xml有很多不识别的插件,有解决方法吗? |
试一下这种方式
|
package是没有问题,install不行。 |
@ckgiant 不一定要用 install ,如果涉及到 jdbc 的一些依赖需要引用的话,可以 |
@ckgiant 另外一种方式就是注释掉 |
用install是因为想在这个项目上进行二次开发,扩展clickhouse的代理实现 |
可以试试上边提到的另一种方法 |
可以了,非常感谢。 |
顺道问一下,es的查询用命令行没问题,但是jdbc连接查询有问题,源码发现两种实现方式似乎不同,不知是不是jdbc的调用方式不对,请问有使用demo吗 |
请问可否帮忙看看这个问题:#190 |
install 时报错是因为failOnWarning这个配置 <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${maven-dependency-plugin.version}</version>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<failOnWarning>true</failOnWarning>
</configuration>
</execution>
</executions>
</plugin> 我提了一个PR,其中有修复这个问题。#220 mvn clean compile
mvn clean -DskipTests=true package
mvn clean -DskipTests=true install |
…al analyze-only failOnWarning to False; add ignore the qsql-meta and qsql-parser module
maven编译的时候显示如下错误:
对maven的版本有要求吗
The text was updated successfully, but these errors were encountered: