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
先前只有最外层的pom.xml,它构建所有的package。
2.0的代码@goodjava增加了很多服务治理的功能, 并且拆成多个package,所以需要重构一下, 类似netty、dubbo这样的组织方式。
其中, groupId 和 artifactId 可以分别叫做
groupId
artifactId
<groupId>com.colobu.rpcx</groupId> <artifactId>rpcx-parent</artifactId> <version>2.0-SNAPSHOT</version>
<groupId>com.colobu.rpcx</groupId> <artifactId>server</artifactId> <version>2.0-SNAPSHOT</version>
<groupId>com.colobu.rpcx</groupId> <artifactId>client</artifactId> <version>2.0-SNAPSHOT</version>
<groupId>com.colobu.rpcx</groupId> <artifactId>common</artifactId> <version>2.0-SNAPSHOT</version>
<groupId>com.colobu.rpcx</groupId> <artifactId>container</artifactId> <version>2.0-SNAPSHOT</version>
相关的依赖定义放在rpcx-parent的pom.xml中, 库的版本号放在properties中。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
先前只有最外层的pom.xml,它构建所有的package。
2.0的代码@goodjava增加了很多服务治理的功能, 并且拆成多个package,所以需要重构一下, 类似netty、dubbo这样的组织方式。
其中,
groupId
和artifactId
可以分别叫做相关的依赖定义放在rpcx-parent的pom.xml中, 库的版本号放在properties中。
The text was updated successfully, but these errors were encountered: