Skip to content

Commit

Permalink
Add dependencies to top-level project
Browse files Browse the repository at this point in the history
  • Loading branch information
kneth committed Nov 11, 2024
1 parent f2f040a commit c4f42bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ group = "io.crate"

dependencies {
implementation project(':pg')
implementation 'com.fasterxml.jackson.core:jackson-core:2.5.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.5.3'
testImplementation 'io.crate:crate-testing:0.11.1'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'junit:junit:4.13.2'
Expand Down Expand Up @@ -81,6 +83,7 @@ shadowJar.dependsOn([getVersion])
shadowJar {
archiveClassifier.set('')
duplicatesStrategy 'fail'
project.configurations.implementation.canBeResolved = true
configurations = [project.configurations.compileClasspath]
dependencies {
include(project(':pg'))
Expand Down
1 change: 1 addition & 0 deletions pg/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies {
implementation 'net.java.dev.jna:jna:4.2.1'
implementation 'net.java.dev.jna:jna-platform:4.2.1'
implementation 'org.slf4j:jcl-over-slf4j:1.7.12'
implementation 'com.fasterxml.jackson.core:jackson-core:2.5.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.5.3'
implementation 'org.osgi:org.osgi.enterprise:5.0.0'
implementation 'org.osgi:org.osgi.core:4.3.1'
Expand Down

0 comments on commit c4f42bc

Please sign in to comment.