File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
extension/persistence/eclipselink Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,10 @@ subprojects {
6464 apply plugin : " java-library"
6565 }
6666
67+ project(" :polaris-eclipselink" ) {
68+ apply plugin : " java-library"
69+ }
70+
6771 dependencies {
6872 implementation(platform(libs. jackson. bom))
6973 implementation(" com.fasterxml.jackson.core:jackson-annotations" )
Original file line number Diff line number Diff line change 1616
1717dependencies {
1818 implementation(project(" :polaris-core" ))
19- implementation (project(" :polaris-service" ))
19+ runtimeOnly (project(" :polaris-service" ))
2020 implementation(libs. eclipselink)
2121 implementation(platform(libs. dropwizard. bom))
2222 implementation(" io.dropwizard:dropwizard-jackson" )
23+ implementation(libs. h2) // Different dependencies will be needed for different backend databases
2324
2425 testImplementation(libs. h2)
2526 testImplementation(testFixtures(project(" :polaris-core" )))
Original file line number Diff line number Diff line change @@ -89,6 +89,8 @@ defaultRealms:
8989
9090metaStoreManager :
9191 type : in-memory
92+ # type: eclipse-link # uncomment to use eclipse-link as metastore
93+ # persistence-unit: polaris-dev
9294
9395# TODO - avoid duplicating token broker config
9496oauth2 :
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ plugins {
2121
2222dependencies {
2323 implementation(project(" :polaris-core" ))
24-
24+ implementation(project(" :polaris-eclipselink" ))
25+
2526 implementation(platform(libs. iceberg. bom))
2627 implementation(" org.apache.iceberg:iceberg-api" )
2728 implementation(" org.apache.iceberg:iceberg-core" )
You can’t perform that action at this time.
0 commit comments