Skip to content

Commit

Permalink
atlassian commons gradle file
Browse files Browse the repository at this point in the history
Signed-off-by: Santhosh Gandhe <[email protected]>
  • Loading branch information
san81 committed Feb 4, 2025
1 parent 66befd5 commit 4fde3e9
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
plugins {
id 'java'
}


dependencies {

implementation project(path: ':data-prepper-api')
implementation project(path: ':data-prepper-plugins:saas-source-plugins:source-crawler')

implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'

implementation 'io.micrometer:micrometer-core'
implementation 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation("org.springframework:spring-web:${libs.versions.spring.get()}")

implementation(libs.spring.context) {
exclude group: 'commons-logging', module: 'commons-logging'
}

testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.4'
testImplementation project(path: ':data-prepper-test-common')
}

test {
useJUnitPlatform()
}

0 comments on commit 4fde3e9

Please sign in to comment.