We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
现在这种做法我想把使用了hugegraph-client的项目打包成jar都不行
The text was updated successfully, but these errors were encountered:
多谢反馈,希望能详细的说明一下原因。我的理解是你想把这个项目打成一个all-in-one的Jar包是吗?我们建议的方式是通过maven来管理依赖包,如果一定要打成一个离线包,那么建议以lib的方式动态加载各依赖Jar包。
Sorry, something went wrong.
如果确实有需要,可以修改hugegraph-common获取version的方式,具体方法如下: 将CommonVersion.java中代码 VERSION = Version.of(CommonVersion.class) 改为 VERSION = Version.of(CommonVersion.class, "1.5.2") 其中第2个参数为:以硬编码的方式指定当前代码的版本号。
VERSION = Version.of(CommonVersion.class)
VERSION = Version.of(CommonVersion.class, "1.5.2")
improve java doc (#87)
4a1926f
No branches or pull requests
现在这种做法我想把使用了hugegraph-client的项目打包成jar都不行
The text was updated successfully, but these errors were encountered: