forked from linkedin/datahub-gma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move "Urns" utility class to another module. (linkedin#31)
This is need to avoid breaking LinkedIn's build.
- Loading branch information
1 parent
f603307
commit 4d3644d
Showing
6 changed files
with
17 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Module which has utilities for core models, particularly URNs. | ||
|
||
This is a separate module from `core-models` due to a technical restriction. Everything in `core-models` is already | ||
defined at LinkedIn, we have essentially forked it in open source. So when we build internally, we need to actually | ||
ignore `core-models`, and use the internal definitions instead. So for anything that _isn't_ forked, i.e. these | ||
utilities, it needs to go into a separate module, or it would break LinkedIn's build, as they would be "missing". |
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,7 @@ | ||
apply plugin: 'java' | ||
|
||
apply from: "$rootDir/gradle/java-publishing.gradle" | ||
|
||
dependencies { | ||
compile project(':core-models') | ||
} |
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
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