Skip to content

Commit dddeb40

Browse files
committed
Use correct slf4j impl in wildfly and services, update versions of type-utils, metadata-utils, common-utils, accumulo-utils, base-rest-responses in microservice starters, apis, services to track datawave version
1 parent 9789088 commit dddeb40

38 files changed

Lines changed: 327 additions & 129 deletions

File tree

core/metrics-reporter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<version.dropwizard-metrics>4.1.2</version.dropwizard-metrics>
2828
<version.httpclient>4.5.10</version.httpclient>
2929
<version.javastatsd>3.1.0</version.javastatsd>
30-
<version.slf4j>2.0.12</version.slf4j>
30+
<version.slf4j>2.0.17</version.slf4j>
3131
</properties>
3232
<dependencyManagement>
3333
<dependencies>

microservices/microservice-service-parent/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,21 @@
1919
</scm>
2020
<properties>
2121
<resource.delimiter>@</resource.delimiter>
22+
<version.slf4j>2.0.17</version.slf4j>
2223
<!-- delimiter that doesn't clash with Spring ${} placeholders -->
2324
<version.spring.boot>2.7.1</version.spring.boot>
2425
<version.spring.cloud>2021.0.3</version.spring.cloud>
2526
</properties>
2627
<dependencyManagement>
2728
<dependencies>
29+
<!-- override the slf4j declarations in spring-boot-dependencies with our own version -->
30+
<dependency>
31+
<groupId>org.slf4j</groupId>
32+
<artifactId>slf4j-bom</artifactId>
33+
<version>${version.slf4j}</version>
34+
<type>pom</type>
35+
<scope>import</scope>
36+
</dependency>
2837
<dependency>
2938
<groupId>org.springframework.boot</groupId>
3039
<artifactId>spring-boot-dependencies</artifactId>

microservices/services/accumulo/api/pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,14 @@
1919
<properties>
2020
<datawave.webservice.namespace>http://webservice.datawave.nsa/v1</datawave.webservice.namespace>
2121
<version.accumulo>2.1.4-5792fed3-bulkv2</version.accumulo>
22-
<version.datawave.accumulo-utils>4.0.1</version.datawave.accumulo-utils>
23-
<version.datawave.base-rest-responses>4.0.1</version.datawave.base-rest-responses>
24-
<version.datawave.type-utils>3.1.2</version.datawave.type-utils>
22+
<version.datawave>7.33.1</version.datawave>
2523
</properties>
2624
<dependencyManagement>
2725
<dependencies>
2826
<dependency>
2927
<groupId>gov.nsa.datawave.core</groupId>
3028
<artifactId>accumulo-utils</artifactId>
31-
<version>${version.datawave.accumulo-utils}</version>
29+
<version>${version.datawave}</version>
3230
<exclusions>
3331
<exclusion>
3432
<groupId>com.google.guava</groupId>
@@ -39,12 +37,12 @@
3937
<dependency>
4038
<groupId>gov.nsa.datawave.core</groupId>
4139
<artifactId>base-rest-responses</artifactId>
42-
<version>${version.datawave.base-rest-responses}</version>
40+
<version>${version.datawave}</version>
4341
</dependency>
4442
<dependency>
4543
<groupId>gov.nsa.datawave.core</groupId>
4644
<artifactId>type-utils</artifactId>
47-
<version>${version.datawave.type-utils}</version>
45+
<version>${version.datawave}</version>
4846
<exclusions>
4947
<exclusion>
5048
<groupId>org.apache.avro</groupId>

microservices/services/accumulo/service/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nsa.datawave.microservice</groupId>
66
<artifactId>datawave-microservice-service-parent</artifactId>
7-
<version>5.0.7</version>
7+
<version>5.0.8-SNAPSHOT</version>
88
<relativePath>../../../microservice-service-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>accumulo-service</artifactId>
@@ -21,8 +21,8 @@
2121
<start-class>datawave.microservice.accumulo.AccumuloService</start-class>
2222
<version.curator>5.2.0</version.curator>
2323
<version.curator.test>5.2.0</version.curator.test>
24-
<version.datawave.accumulo-api>4.0.0</version.datawave.accumulo-api>
25-
<version.datawave.starter-datawave>4.0.5</version.datawave.starter-datawave>
24+
<version.datawave.accumulo-api>4.0.1-SNAPSHOT</version.datawave.accumulo-api>
25+
<version.datawave.starter>4.0.6-SNAPSHOT</version.datawave.starter>
2626
<version.datawave.starter-datawave-audit>4.0.2</version.datawave.starter-datawave-audit>
2727
<version.hadoop>3.3.4</version.hadoop>
2828
<version.zookeeper>3.8.3</version.zookeeper>
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>gov.nsa.datawave.microservice</groupId>
3434
<artifactId>spring-boot-starter-datawave</artifactId>
35-
<version>${version.datawave.starter-datawave}</version>
35+
<version>${version.datawave.starter}</version>
3636
<type>pom</type>
3737
<scope>import</scope>
3838
</dependency>
@@ -171,7 +171,7 @@
171171
<dependency>
172172
<groupId>gov.nsa.datawave.microservice</groupId>
173173
<artifactId>spring-boot-starter-datawave</artifactId>
174-
<version>${version.datawave.starter-datawave}</version>
174+
<version>${version.datawave.starter}</version>
175175
</dependency>
176176
<dependency>
177177
<groupId>gov.nsa.datawave.microservice</groupId>

microservices/services/audit/service/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nsa.datawave.microservice</groupId>
66
<artifactId>datawave-microservice-service-parent</artifactId>
7-
<version>5.0.7</version>
7+
<version>5.0.8-SNAPSHOT</version>
88
<relativePath>../../../microservice-service-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>audit-service</artifactId>
@@ -20,8 +20,8 @@
2020
<properties>
2121
<version.commons>3.9</version.commons>
2222
<version.datawave.audit-api>4.0.1</version.datawave.audit-api>
23-
<version.datawave.hazelcast-client>4.0.2</version.datawave.hazelcast-client>
24-
<version.datawave.starter>4.0.5</version.datawave.starter>
23+
<version.datawave.hazelcast-client>4.0.3-SNAPSHOT</version.datawave.hazelcast-client>
24+
<version.datawave.starter>4.0.6-SNAPSHOT</version.datawave.starter>
2525
<version.hadoop>3.3.4</version.hadoop>
2626
<version.zookeeper>3.8.0</version.zookeeper>
2727
</properties>

microservices/services/authorization/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<version.jackson>2.10.1</version.jackson>
2424
<version.jaxb>2.3.3</version.jaxb>
2525
<version.jjwt>0.11.2</version.jjwt>
26-
<version.slf4j>2.0.12</version.slf4j>
26+
<version.slf4j>2.0.17</version.slf4j>
2727
</properties>
2828
<dependencyManagement>
2929
<dependencies>

microservices/services/authorization/service/pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nsa.datawave.microservice</groupId>
66
<artifactId>datawave-microservice-service-parent</artifactId>
7-
<version>5.0.7</version>
7+
<version>5.0.8-SNAPSHOT</version>
88
<relativePath>../../../microservice-service-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>authorization-service</artifactId>
@@ -19,12 +19,10 @@
1919
</scm>
2020
<properties>
2121
<start-class>datawave.microservice.authorization.AuthorizationService</start-class>
22-
<version.datawave.authorization-api>4.0.1</version.datawave.authorization-api>
23-
<version.datawave.hazelcast-client>4.0.2</version.datawave.hazelcast-client>
24-
<version.datawave.starter>4.0.5</version.datawave.starter>
22+
<version.datawave.authorization-api>4.0.2-SNAPSHOT</version.datawave.authorization-api>
23+
<version.datawave.hazelcast-client>4.0.3-SNAPSHOT</version.datawave.hazelcast-client>
24+
<version.datawave.starter>4.0.6-SNAPSHOT</version.datawave.starter>
2525
<version.jaxb>2.3.3</version.jaxb>
26-
<version.microservice.hazelcast-client>4.0.2</version.microservice.hazelcast-client>
27-
<version.microservice.starter>4.0.3</version.microservice.starter>
2826
<version.zookeeper>3.8.0</version.zookeeper>
2927
</properties>
3028
<dependencyManagement>

microservices/services/config/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nsa.datawave.microservice</groupId>
66
<artifactId>datawave-microservice-service-parent</artifactId>
7-
<version>5.0.7</version>
7+
<version>5.0.8-SNAPSHOT</version>
88
<relativePath>../../microservice-service-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>config-service</artifactId>
@@ -25,7 +25,7 @@
2525
</scm>
2626
<properties>
2727
<start-class>datawave.microservice.config.server.ConfigServerApplication</start-class>
28-
<version.datawave.starter>4.0.5</version.datawave.starter>
28+
<version.datawave.starter>4.0.6-SNAPSHOT</version.datawave.starter>
2929
</properties>
3030
<dependencyManagement>
3131
<dependencies>

microservices/services/dictionary/api/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
</scm>
1919
<properties>
2020
<datawave.webservice.namespace>http://webservice.datawave.nsa/v1</datawave.webservice.namespace>
21-
<version.datawave.base-rest-responses>4.0.1</version.datawave.base-rest-responses>
22-
<version.datawave.metadata-utils>4.0.16</version.datawave.metadata-utils>
21+
<version.datawave>7.33.1</version.datawave>
2322
<version.guava>31.1-jre</version.guava>
2423
</properties>
2524
<dependencyManagement>
@@ -32,7 +31,7 @@
3231
<dependency>
3332
<groupId>gov.nsa.datawave.core</groupId>
3433
<artifactId>base-rest-responses</artifactId>
35-
<version>${version.datawave.base-rest-responses}</version>
34+
<version>${version.datawave}</version>
3635
<exclusions>
3736
<exclusion>
3837
<groupId>ch.qos.logback</groupId>
@@ -47,7 +46,7 @@
4746
<dependency>
4847
<groupId>gov.nsa.datawave.core</groupId>
4948
<artifactId>metadata-utils</artifactId>
50-
<version>${version.datawave.metadata-utils}</version>
49+
<version>${version.datawave}</version>
5150
<exclusions>
5251
<exclusion>
5352
<groupId>log4j</groupId>

microservices/services/dictionary/service/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nsa.datawave.microservice</groupId>
66
<artifactId>datawave-microservice-service-parent</artifactId>
7-
<version>5.0.7</version>
7+
<version>5.0.8-SNAPSHOT</version>
88
<relativePath>../../../microservice-service-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>dictionary-service</artifactId>
@@ -26,9 +26,9 @@
2626
<start-class>datawave.microservice.dictionary.DictionaryService</start-class>
2727
<version.accumulo>2.1.4-5792fed3-bulkv2</version.accumulo>
2828
<version.curator>5.2.0</version.curator>
29-
<version.datawave.dictionary-api>4.0.5</version.datawave.dictionary-api>
30-
<version.datawave.starter>4.0.5</version.datawave.starter>
31-
<version.datawave.starter-metadata>3.0.2</version.datawave.starter-metadata>
29+
<version.datawave.dictionary-api>4.0.6-SNAPSHOT</version.datawave.dictionary-api>
30+
<version.datawave.starter>4.0.6-SNAPSHOT</version.datawave.starter>
31+
<version.datawave.starter-metadata>3.0.3-SNAPSHOT</version.datawave.starter-metadata>
3232
<version.in-memory-accumulo>4.0.4</version.in-memory-accumulo>
3333
<version.webjars.datatables>1.11.4</version.webjars.datatables>
3434
<version.webjars.jquery>3.6.0</version.webjars.jquery>

0 commit comments

Comments
 (0)