forked from datahub-project/datahub
-
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.
Openlineage endpoint and Spark Lineage Beta Plugin (datahub-project#9870
) Co-authored-by: David Leifker <[email protected]>
- Loading branch information
1 parent
05593f4
commit 6eb5f80
Showing
66 changed files
with
9,328 additions
and
20 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
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
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,61 @@ | ||
plugins { | ||
id("com.palantir.git-version") apply false | ||
id 'java' | ||
id 'com.github.johnrengelman.shadow' | ||
id 'jacoco' | ||
id 'signing' | ||
id 'io.codearte.nexus-staging' | ||
id 'maven-publish' | ||
} | ||
|
||
apply from: "../versioning.gradle" | ||
|
||
dependencies { | ||
implementation project(':metadata-models') | ||
implementation project(path: ':metadata-models', configuration: "dataTemplate") | ||
|
||
implementation externalDependency.slf4jApi | ||
implementation externalDependency.jacksonDataBind | ||
runtimeOnly externalDependency.jna | ||
|
||
compileOnly externalDependency.lombok | ||
annotationProcessor externalDependency.lombok | ||
// VisibleForTesting | ||
compileOnly externalDependency.guava | ||
testImplementation externalDependency.testng | ||
testImplementation externalDependency.mockito | ||
testImplementation externalDependency.testContainers | ||
testImplementation externalDependency.httpAsyncClient | ||
testRuntimeOnly externalDependency.logbackClassicJava8 | ||
} | ||
|
||
jacocoTestReport { | ||
dependsOn test // tests are required to run before generating the report | ||
} | ||
|
||
task copyAvroSchemas { | ||
dependsOn(':metadata-events:mxe-schemas:renameNamespace') | ||
copy { | ||
from file('../../../metadata-events/mxe-schemas/src/renamed/avro/com/linkedin/mxe/MetadataChangeProposal.avsc') | ||
into file('./src/main/resources') | ||
} | ||
} | ||
|
||
compileJava.dependsOn copyAvroSchemas | ||
|
||
test { | ||
// to avoid simultaneous executions of tests when complete build is run | ||
mustRunAfter(":metadata-io:test") | ||
useJUnit() | ||
finalizedBy jacocoTestReport | ||
} | ||
|
||
// task sourcesJar(type: Jar) { | ||
// archiveClassifier = 'sources' | ||
// from sourceSets.main.allSource | ||
//} | ||
|
||
//task javadocJar(type: Jar) { | ||
// archiveClassifier = 'javadoc' | ||
// from javadoc | ||
//} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.