Skip to content

Commit b083d6c

Browse files
authored
Merge pull request #7789 from lpalashevski/new-omag-server
2 parents 49aeb43 + f92076e commit b083d6c

File tree

1 file changed

+16
-15
lines changed
  • open-metadata-implementation/server-chassis/server-chassis-spring

1 file changed

+16
-15
lines changed

open-metadata-implementation/server-chassis/server-chassis-spring/build.gradle

+16-15
Original file line numberDiff line numberDiff line change
@@ -5,61 +5,62 @@
55

66
plugins {
77
id 'java'
8-
id 'org.springframework.boot' version '3.1.1'
9-
id 'io.spring.dependency-management' version '1.1.0'
8+
id 'org.springframework.boot'
109
}
1110

1211

1312
dependencies {
1413

14+
implementation 'org.springframework:spring-core'
15+
implementation 'org.springframework:spring-beans'
16+
implementation 'org.springframework:spring-context'
17+
implementation 'org.springframework:spring-web'
1518
implementation 'org.springframework.boot:spring-boot'
1619
implementation 'org.springframework.boot:spring-boot-autoconfigure'
1720
implementation 'org.springframework.boot:spring-boot-starter-actuator'
1821
implementation 'org.springframework.boot:spring-boot-starter-web'
1922
implementation 'org.springframework.boot:spring-boot-starter-validation'
2023
implementation 'org.springframework.boot:spring-boot-actuator-autoconfigure'
2124
implementation 'org.springframework.boot:spring-boot-actuator'
22-
implementation 'org.springframework:spring-beans'
23-
implementation 'org.springframework:spring-core'
24-
implementation 'org.springframework:spring-context'
25-
implementation 'org.springframework:spring-web'
2625
implementation 'org.springframework.boot:spring-boot-starter-tomcat'
2726
implementation 'jakarta.servlet:jakarta.servlet-api'
2827
implementation 'org.slf4j:slf4j-api'
2928
implementation 'com.fasterxml.jackson.core:jackson-databind'
29+
implementation 'com.fasterxml.jackson.core:jackson-annotations'
3030

3131
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
3232
runtimeOnly 'ch.qos.logback:logback-classic'
3333
runtimeOnly 'org.hibernate:hibernate-validator'
3434
compileOnly 'io.swagger.core.v3:swagger-annotations-jakarta'
35-
implementation 'com.fasterxml.jackson.core:jackson-annotations'
3635

3736
compileOnly project(':open-metadata-implementation:common-services:ffdc-services')
3837
implementation project(':open-metadata-implementation:adapters:authentication-plugins:http-helper')
39-
/* Current server operation support depends on platform-services */
4038
implementation project(':open-metadata-implementation:admin-services:admin-services-api')
4139
implementation project(':open-metadata-implementation:platform-services:platform-services-api')
4240
implementation project(':open-metadata-implementation:platform-services:platform-services-server')
4341

4442
/* IN DEVELOPMENT */
4543

4644
/* Pulling dependencies for some fo the sub-systems enabling 'Metadata Access Store' services */
45+
4746
runtimeOnly project(':open-metadata-implementation:repository-services:repository-services-spring')
4847
runtimeOnly project(':open-metadata-implementation:access-services:asset-manager:asset-manager-spring')
4948
runtimeOnly project(':open-metadata-implementation:access-services:asset-catalog:asset-catalog-spring')
49+
5050
/* Pulling dependencies for some fo the sub-systems enabling 'Integration Daemon' services to test Database Integrator via JDBC integration connector */
51-
runtimeOnly project(':open-metadata-implementation:integration-services:database-integrator:database-integrator-server')
52-
runtimeOnly project(':open-metadata-implementation:access-services:data-manager:data-manager-spring')
53-
runtimeOnly 'org.odpi.egeria:egeria-connector-resource-jdbc:1.1'
54-
runtimeOnly 'org.odpi.egeria:egeria-connector-integration-jdbc:1.1'
55-
runtimeOnly 'com.oracle.database.jdbc:ojdbc10:19.19.0.0'
51+
52+
// runtimeOnly project(':open-metadata-implementation:integration-services:database-integrator:database-integrator-server')
53+
// runtimeOnly project(':open-metadata-implementation:access-services:data-manager:data-manager-spring')
54+
// runtimeOnly 'org.odpi.egeria:egeria-connector-resource-jdbc:1.1'
55+
// runtimeOnly 'org.odpi.egeria:egeria-connector-integration-jdbc:1.1'
56+
// runtimeOnly 'com.oracle.database.jdbc:ojdbc10:19.19.0.0'
5657

5758
testImplementation 'org.junit.jupiter:junit-jupiter-api'
5859
testImplementation 'org.springframework.boot:spring-boot-test'
5960
testImplementation 'org.springframework.boot:spring-boot-starter-test'
6061
testImplementation 'com.vaadin.external.google:android-json:0.0.20131108.vaadin1'
61-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.3'
62-
testImplementation 'org.springframework:spring-test:6.0.10'
62+
testImplementation 'org.junit.jupiter:junit-jupiter-params'
63+
testImplementation 'org.springframework:spring-test'
6364

6465
}
6566

0 commit comments

Comments
 (0)