-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract the data-prepper-plugin-framework from data-prepper-core #4260
Changes from all commits
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.dataprepper.parser; | ||
package org.opensearch.dataprepper.pipeline.parser; | ||
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. We should look to see if we can make this package protected. Perhaps in another PR. It might involve moving a few other classes to reside in the same package. |
||
|
||
import com.fasterxml.jackson.core.JsonParser; | ||
import com.fasterxml.jackson.databind.DeserializationContext; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
dependencies { | ||
implementation project(':data-prepper-api') | ||
implementation project(':data-prepper-pipeline-parser') | ||
implementation libs.commons.lang3 | ||
implementation 'javax.inject:javax.inject:1' | ||
implementation 'javax.annotation:javax.annotation-api:1.3.2' | ||
implementation 'org.hibernate.validator:hibernate-validator:8.0.1.Final' | ||
implementation(libs.spring.core) { | ||
exclude group: 'commons-logging', module: 'commons-logging' | ||
} | ||
implementation(libs.spring.context) { | ||
exclude group: 'commons-logging', module: 'commons-logging' | ||
} | ||
implementation libs.reflections.core | ||
implementation 'com.fasterxml.jackson.core:jackson-databind' | ||
testImplementation testLibs.mockito.inline | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.opensearch.dataprepper.plugin; | ||
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. We should probably change this package to be something else. But, maybe in another PR. |
||
|
||
import org.opensearch.dataprepper.model.configuration.PipelineExtensions; | ||
|
||
public interface ExtensionsConfiguration { | ||
PipelineExtensions getPipelineExtensions(); | ||
} |
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.
We should look to see if we can make this package protected. Perhaps in another PR. It might involve moving a few other classes to reside in the same package.