You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by bd...@apache.org on 2023/05/31 19:58:42 UTC

[directory-server] 01/01: Reduce scope of junit in service module

This is an automated email from the ASF dual-hosted git repository.

bdemers pushed a commit to branch service-junit-scope
in repository https://gitbox.apache.org/repos/asf/directory-server.git

commit 51341b2b34f9aecc1a8118ba51cfd632e72dac0e
Author: Brian Demers <bd...@apache.org>
AuthorDate: Wed May 31 15:56:37 2023 -0400

    Reduce scope of junit in service module
    
    JUnit is included in the shaded jar because due to the previous scope of `compile`
---
 service/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/service/pom.xml b/service/pom.xml
index c4d6c306c5..abd49987a0 100644
--- a/service/pom.xml
+++ b/service/pom.xml
@@ -79,7 +79,7 @@
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <scope>compile</scope>
+      <scope>test</scope>
     </dependency>
   </dependencies>