-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[vpj][all] Create a new module for offline components to reduce leaka…
…ge (#1205) Recently, we moved some shared classes into "venice-common" to share common functionality. To do this, we added "hadoop-common" library into "venice-common". However, this leaks "hadoop-common" into online components too which is not desired. Moved these classes into a "venice-hadoop-common" package.
- Loading branch information
1 parent
c694d96
commit b932806
Showing
7 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
dependencies { | ||
implementation project(':internal:venice-common') | ||
implementation libraries.log4j2api | ||
implementation (libraries.hadoopCommon) { | ||
// Exclude transitive dependency | ||
exclude group: 'org.apache.avro' | ||
exclude group: 'javax.servlet' | ||
} | ||
|
||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters