This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
The following commit(s) were added to refs/heads/master by this push: new f4f14f802c [FIX] Add missing commons codec dependency f4f14f802c is described below commit f4f14f802c42f6bde7069f9d09a99614dffef287 Author: Benoit TELLIER <btell...@linagora.com> AuthorDate: Wed Oct 16 09:18:47 2024 +0200 [FIX] Add missing commons codec dependency --- backends-common/cassandra/pom.xml | 2 -- backends-common/opensearch/pom.xml | 4 ++++ event-bus/cassandra/pom.xml | 5 ----- event-sourcing/event-store-cassandra/pom.xml | 5 ----- mailbox/cassandra/pom.xml | 5 ----- mailbox/plugin/deleted-messages-vault-cassandra/pom.xml | 5 ----- mailbox/plugin/quota-mailing-cassandra/pom.xml | 5 ----- mpt/impl/imap-mailbox/cassandra/pom.xml | 5 ----- mpt/impl/managesieve/cassandra/pom.xml | 7 ------- mpt/impl/smtp/cassandra-rabbitmq-object-storage/pom.xml | 5 ----- mpt/impl/smtp/cassandra/pom.xml | 5 ----- server/apps/cassandra-app/pom.xml | 5 ----- server/apps/distributed-app/pom.xml | 5 ----- server/apps/distributed-pop3-app/pom.xml | 5 ----- server/blob/blob-cassandra/pom.xml | 5 ----- server/data/data-cassandra/pom.xml | 5 ----- server/data/data-jmap-cassandra/pom.xml | 5 ----- server/mailrepository/mailrepository-cassandra/pom.xml | 5 ----- .../distributed-jmap-rfc-8621-integration-tests/pom.xml | 5 ----- server/queue/queue-rabbitmq/pom.xml | 5 ----- server/task/task-distributed/pom.xml | 5 ----- 21 files changed, 4 insertions(+), 99 deletions(-) diff --git a/backends-common/cassandra/pom.xml b/backends-common/cassandra/pom.xml index b2f84b2f9a..f3ef3a1cb4 100644 --- a/backends-common/cassandra/pom.xml +++ b/backends-common/cassandra/pom.xml @@ -68,12 +68,10 @@ <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>io.netty</groupId> diff --git a/backends-common/opensearch/pom.xml b/backends-common/opensearch/pom.xml index 5397887d9e..55e2762c48 100644 --- a/backends-common/opensearch/pom.xml +++ b/backends-common/opensearch/pom.xml @@ -55,6 +55,10 @@ <groupId>com.github.fge</groupId> <artifactId>throwing-lambdas</artifactId> </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-core</artifactId> diff --git a/event-bus/cassandra/pom.xml b/event-bus/cassandra/pom.xml index 87f1d21e1a..e17847ff2c 100644 --- a/event-bus/cassandra/pom.xml +++ b/event-bus/cassandra/pom.xml @@ -55,11 +55,6 @@ <type>test-jar</type> <scope>test</scope> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> diff --git a/event-sourcing/event-store-cassandra/pom.xml b/event-sourcing/event-store-cassandra/pom.xml index b838dcdacd..f3fbee670d 100644 --- a/event-sourcing/event-store-cassandra/pom.xml +++ b/event-sourcing/event-store-cassandra/pom.xml @@ -78,11 +78,6 @@ <artifactId>testing-base</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-scala-extensions_${scala.base}</artifactId> diff --git a/mailbox/cassandra/pom.xml b/mailbox/cassandra/pom.xml index 5ab053841d..3328e911ac 100644 --- a/mailbox/cassandra/pom.xml +++ b/mailbox/cassandra/pom.xml @@ -179,11 +179,6 @@ <artifactId>guice</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> diff --git a/mailbox/plugin/deleted-messages-vault-cassandra/pom.xml b/mailbox/plugin/deleted-messages-vault-cassandra/pom.xml index 6ada80f4a5..03652e87f6 100644 --- a/mailbox/plugin/deleted-messages-vault-cassandra/pom.xml +++ b/mailbox/plugin/deleted-messages-vault-cassandra/pom.xml @@ -80,11 +80,6 @@ <type>test-jar</type> <scope>test</scope> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> diff --git a/mailbox/plugin/quota-mailing-cassandra/pom.xml b/mailbox/plugin/quota-mailing-cassandra/pom.xml index 8186b25533..f531f680a6 100644 --- a/mailbox/plugin/quota-mailing-cassandra/pom.xml +++ b/mailbox/plugin/quota-mailing-cassandra/pom.xml @@ -129,11 +129,6 @@ <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>net.javacrumbs.json-unit</groupId> <artifactId>json-unit-assertj</artifactId> diff --git a/mpt/impl/imap-mailbox/cassandra/pom.xml b/mpt/impl/imap-mailbox/cassandra/pom.xml index f1791d192c..e82957b425 100644 --- a/mpt/impl/imap-mailbox/cassandra/pom.xml +++ b/mpt/impl/imap-mailbox/cassandra/pom.xml @@ -95,11 +95,6 @@ <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> diff --git a/mpt/impl/managesieve/cassandra/pom.xml b/mpt/impl/managesieve/cassandra/pom.xml index 3ed1d35937..34d45d004a 100644 --- a/mpt/impl/managesieve/cassandra/pom.xml +++ b/mpt/impl/managesieve/cassandra/pom.xml @@ -30,7 +30,6 @@ <name>Apache James :: MPT :: ManageSieve :: Cassandra</name> - <dependencies> <dependency> <groupId>${james.groupId}</groupId> @@ -54,11 +53,5 @@ <artifactId>testing-base</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> </dependencies> - </project> diff --git a/mpt/impl/smtp/cassandra-rabbitmq-object-storage/pom.xml b/mpt/impl/smtp/cassandra-rabbitmq-object-storage/pom.xml index 7f7e3fe7ab..3b9dde21e6 100644 --- a/mpt/impl/smtp/cassandra-rabbitmq-object-storage/pom.xml +++ b/mpt/impl/smtp/cassandra-rabbitmq-object-storage/pom.xml @@ -116,10 +116,5 @@ <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> </dependencies> </project> diff --git a/mpt/impl/smtp/cassandra/pom.xml b/mpt/impl/smtp/cassandra/pom.xml index 454e359ef7..e9ded6448d 100644 --- a/mpt/impl/smtp/cassandra/pom.xml +++ b/mpt/impl/smtp/cassandra/pom.xml @@ -84,10 +84,5 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> </dependencies> </project> diff --git a/server/apps/cassandra-app/pom.xml b/server/apps/cassandra-app/pom.xml index 4acde23f71..52e2d44fc2 100644 --- a/server/apps/cassandra-app/pom.xml +++ b/server/apps/cassandra-app/pom.xml @@ -259,11 +259,6 @@ <groupId>com.linagora</groupId> <artifactId>logback-elasticsearch-appender</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> diff --git a/server/apps/distributed-app/pom.xml b/server/apps/distributed-app/pom.xml index aec693e9bd..5160986f7d 100644 --- a/server/apps/distributed-app/pom.xml +++ b/server/apps/distributed-app/pom.xml @@ -320,11 +320,6 @@ <groupId>com.linagora</groupId> <artifactId>logback-elasticsearch-appender</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> diff --git a/server/apps/distributed-pop3-app/pom.xml b/server/apps/distributed-pop3-app/pom.xml index 73dcdff5f4..1a588701fd 100644 --- a/server/apps/distributed-pop3-app/pom.xml +++ b/server/apps/distributed-pop3-app/pom.xml @@ -311,11 +311,6 @@ <groupId>com.linagora</groupId> <artifactId>logback-elasticsearch-appender</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> diff --git a/server/blob/blob-cassandra/pom.xml b/server/blob/blob-cassandra/pom.xml index 632c8998cc..5ea48da48a 100644 --- a/server/blob/blob-cassandra/pom.xml +++ b/server/blob/blob-cassandra/pom.xml @@ -79,11 +79,6 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> diff --git a/server/data/data-cassandra/pom.xml b/server/data/data-cassandra/pom.xml index 801ccb2017..a94c0f7cf7 100644 --- a/server/data/data-cassandra/pom.xml +++ b/server/data/data-cassandra/pom.xml @@ -95,11 +95,6 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> diff --git a/server/data/data-jmap-cassandra/pom.xml b/server/data/data-jmap-cassandra/pom.xml index ad535cc5c3..8c823f97ef 100644 --- a/server/data/data-jmap-cassandra/pom.xml +++ b/server/data/data-jmap-cassandra/pom.xml @@ -109,11 +109,6 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> diff --git a/server/mailrepository/mailrepository-cassandra/pom.xml b/server/mailrepository/mailrepository-cassandra/pom.xml index eb8a9ab05b..9dec0a4b29 100644 --- a/server/mailrepository/mailrepository-cassandra/pom.xml +++ b/server/mailrepository/mailrepository-cassandra/pom.xml @@ -87,11 +87,6 @@ <artifactId>testing-base</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> </dependencies> <build> diff --git a/server/protocols/jmap-rfc-8621-integration-tests/distributed-jmap-rfc-8621-integration-tests/pom.xml b/server/protocols/jmap-rfc-8621-integration-tests/distributed-jmap-rfc-8621-integration-tests/pom.xml index f58f929d68..f030ba3b57 100644 --- a/server/protocols/jmap-rfc-8621-integration-tests/distributed-jmap-rfc-8621-integration-tests/pom.xml +++ b/server/protocols/jmap-rfc-8621-integration-tests/distributed-jmap-rfc-8621-integration-tests/pom.xml @@ -120,11 +120,6 @@ <artifactId>jmap-rfc-8621-integration-tests-common</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>pulsar</artifactId> diff --git a/server/queue/queue-rabbitmq/pom.xml b/server/queue/queue-rabbitmq/pom.xml index f098f24b4e..41995d7d11 100644 --- a/server/queue/queue-rabbitmq/pom.xml +++ b/server/queue/queue-rabbitmq/pom.xml @@ -154,11 +154,6 @@ <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> diff --git a/server/task/task-distributed/pom.xml b/server/task/task-distributed/pom.xml index dbbc88147b..91155cc78e 100644 --- a/server/task/task-distributed/pom.xml +++ b/server/task/task-distributed/pom.xml @@ -122,11 +122,6 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>net.javacrumbs.json-unit</groupId> <artifactId>json-unit-assertj</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org For additional commands, e-mail: notifications-h...@james.apache.org