-
Notifications
You must be signed in to change notification settings - Fork 44
fix(common): handle spring-boot2/jersey dependency conflicts #131
Changes from all commits
014307b
71a4d00
4ddd61f
921c72f
cb79ce4
df74669
549cdc7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,7 +89,8 @@ | |
| </scm> | ||
|
|
||
| <properties> | ||
| <revision>1.0.0</revision> | ||
| <!-- Note: We need also update the version in CommonVersion.java & RpcVersion.java now --> | ||
| <revision>1.0.1</revision> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. search CommonVersion class & also need update it btw, we need a better way to modify the version, at least add a comment in pom for new devs? @javeme or consider get the
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If it is packaged in a jar, we cannot get the version from the pom.xml, so it fallback to the default version.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
OK, we could consider these way: (way2 is the easiest)
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also need to update RpcVersion.java
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's keep the status quo until we find a perfect way |
||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <top.level.dir>${project.basedir}/..</top.level.dir> | ||
| <compiler.source>1.8</compiler.source> | ||
|
|
@@ -99,6 +100,7 @@ | |
| <commons.configuration2.version>2.8.0</commons.configuration2.version> | ||
| <commons.beanutils.version>1.9.4</commons.beanutils.version> | ||
| <commons.collections.version>3.2.2</commons.collections.version> | ||
| <commons.lang3.version>3.12.0</commons.lang3.version> | ||
| <commons.io.version>2.7</commons.io.version> | ||
| <commons.codec.version>1.13</commons.codec.version> | ||
| <guava.version>30.0-jre</guava.version> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: we need use one version in one project (currently could keep them..)