Skip to content

Commit

Permalink
FIX: include schema cli into release (#4833)
Browse files Browse the repository at this point in the history
MAINT: include schema cli into release

Signed-off-by: George Chen <qchea@amazon.com>
  • Loading branch information
chenqi0805 committed Aug 14, 2024
1 parent 38fe2af commit 00cc2a5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build-resources.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ ext.coreProjects = [
project(':data-prepper-plugins'),
project(':data-prepper-test-common'),
project(':data-prepper-test-event'),
project(':data-prepper-plugin-framework')
]
project(':data-prepper-plugin-framework'),
project(':data-prepper-plugin-schema-cli')
]
11 changes: 11 additions & 0 deletions data-prepper-plugin-schema-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,15 @@ dependencies {
}
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}

jacocoTestCoverageVerification {
afterEvaluate {
classDirectories.from = files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
// Exclude main class
'org/opensearch/dataprepper/schemas/DataPrepperPluginSchemaExecute.class'
])
})
}
}

0 comments on commit 00cc2a5

Please sign in to comment.