This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 25
ISSUE-5922: On the dependencies in the pom.xml files. #13
Labels
Comments
Hi Sijie, Let me make them unify. |
@lihanhui sounds good. +1 |
@sijie - can i can work on this? |
@vcottagiri yes! You are welcome to make the contribution! |
streamnativebot
pushed a commit
that referenced
this issue
Nov 9, 2021
streamnativebot
pushed a commit
that referenced
this issue
Nov 11, 2021
…ons boot (#13) (apache#12667) (cherry picked from commit 515a69f)
2 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Original Issue: apache#5922
Describe the bug
Most of pom.xml files, in which some dependencies on the pulsar itself are written as following:
......
<dependency>
<groupId>org.apache.pulsar</groupId> // THIS LINE
<artifactId>pulsar------</artifactId>
<version>${project.version}</version>
</dependency>
......
But most of them are like this:
<dependency>
<groupId>${project.groupId}</groupId> // THIS LINE
<artifactId>pulsar------</artifactId>
<version>${project.version}</version>
</dependency>
Although both of them work, why not use JUST one of them (e.g. <groupId>${project.groupId}</groupId>).
The text was updated successfully, but these errors were encountered: