This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch feature/segment-tar-embedded-deps-with-provided-scope in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 6b4d67e24ae6f534735275d4aee19578c7190200 Author: Konrad Windszus <[email protected]> AuthorDate: Mon Jun 26 12:09:43 2023 +0200 OAK-10327 Embedded dependencies should have "provided" scope Otherwise they are transitively inherited by depending Maven modules --- oak-segment-tar/pom.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/oak-segment-tar/pom.xml b/oak-segment-tar/pom.xml index 5f96e2a4d2..ae49cfe9ae 100644 --- a/oak-segment-tar/pom.xml +++ b/oak-segment-tar/pom.xml @@ -297,37 +297,37 @@ <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>${netty.version}</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec</artifactId> <version>${netty.version}</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>${netty.version}</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>${netty.version}</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-resolver</artifactId> <version>${netty.version}</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> <version>${netty.version}</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <!-- ConcurrentLinkedHashMap --> @@ -336,7 +336,7 @@ <groupId>com.googlecode.concurrentlinkedhashmap</groupId> <artifactId>concurrentlinkedhashmap-lru</artifactId> <version>${concurrentlinkedhashmap.version}</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <!-- Dependencies on Oak testing modules -->
