|
5 | 5 |
|
6 | 6 | plugins {
|
7 | 7 | 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' |
10 | 9 | }
|
11 | 10 |
|
12 | 11 |
|
13 | 12 | dependencies {
|
14 | 13 |
|
| 14 | + implementation 'org.springframework:spring-core' |
| 15 | + implementation 'org.springframework:spring-beans' |
| 16 | + implementation 'org.springframework:spring-context' |
| 17 | + implementation 'org.springframework:spring-web' |
15 | 18 | implementation 'org.springframework.boot:spring-boot'
|
16 | 19 | implementation 'org.springframework.boot:spring-boot-autoconfigure'
|
17 | 20 | implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
18 | 21 | implementation 'org.springframework.boot:spring-boot-starter-web'
|
19 | 22 | implementation 'org.springframework.boot:spring-boot-starter-validation'
|
20 | 23 | implementation 'org.springframework.boot:spring-boot-actuator-autoconfigure'
|
21 | 24 | 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' |
26 | 25 | implementation 'org.springframework.boot:spring-boot-starter-tomcat'
|
27 | 26 | implementation 'jakarta.servlet:jakarta.servlet-api'
|
28 | 27 | implementation 'org.slf4j:slf4j-api'
|
29 | 28 | implementation 'com.fasterxml.jackson.core:jackson-databind'
|
| 29 | + implementation 'com.fasterxml.jackson.core:jackson-annotations' |
30 | 30 |
|
31 | 31 | runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
|
32 | 32 | runtimeOnly 'ch.qos.logback:logback-classic'
|
33 | 33 | runtimeOnly 'org.hibernate:hibernate-validator'
|
34 | 34 | compileOnly 'io.swagger.core.v3:swagger-annotations-jakarta'
|
35 |
| - implementation 'com.fasterxml.jackson.core:jackson-annotations' |
36 | 35 |
|
37 | 36 | compileOnly project(':open-metadata-implementation:common-services:ffdc-services')
|
38 | 37 | implementation project(':open-metadata-implementation:adapters:authentication-plugins:http-helper')
|
39 |
| - /* Current server operation support depends on platform-services */ |
40 | 38 | implementation project(':open-metadata-implementation:admin-services:admin-services-api')
|
41 | 39 | implementation project(':open-metadata-implementation:platform-services:platform-services-api')
|
42 | 40 | implementation project(':open-metadata-implementation:platform-services:platform-services-server')
|
43 | 41 |
|
44 | 42 | /* IN DEVELOPMENT */
|
45 | 43 |
|
46 | 44 | /* Pulling dependencies for some fo the sub-systems enabling 'Metadata Access Store' services */
|
| 45 | + |
47 | 46 | runtimeOnly project(':open-metadata-implementation:repository-services:repository-services-spring')
|
48 | 47 | runtimeOnly project(':open-metadata-implementation:access-services:asset-manager:asset-manager-spring')
|
49 | 48 | runtimeOnly project(':open-metadata-implementation:access-services:asset-catalog:asset-catalog-spring')
|
| 49 | + |
50 | 50 | /* 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' |
56 | 57 |
|
57 | 58 | testImplementation 'org.junit.jupiter:junit-jupiter-api'
|
58 | 59 | testImplementation 'org.springframework.boot:spring-boot-test'
|
59 | 60 | testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
60 | 61 | 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' |
63 | 64 |
|
64 | 65 | }
|
65 | 66 |
|
|
0 commit comments