Author: alexparvulescu
Date: Thu Nov 17 13:28:44 2016
New Revision: 1770189

URL: http://svn.apache.org/viewvc?rev=1770189&view=rev
Log:
OAK-5114 oak-segment-tar should declare embedded dependencies using compile 
scope
 - patch provided by Alexander Klimetschek


Modified:
    jackrabbit/oak/trunk/oak-segment-tar/pom.xml

Modified: jackrabbit/oak/trunk/oak-segment-tar/pom.xml
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-segment-tar/pom.xml?rev=1770189&r1=1770188&r2=1770189&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-segment-tar/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-segment-tar/pom.xml Thu Nov 17 13:28:44 2016
@@ -184,7 +184,7 @@
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-math3</artifactId>
-            <scope>provided</scope>
+            <scope>compile</scope> <!-- it is embedded in the bundle -->
         </dependency>
         <dependency>
             <groupId>com.google.guava</groupId>
@@ -223,31 +223,31 @@
             <groupId>io.netty</groupId>
             <artifactId>netty-common</artifactId>
             <version>${netty.version}</version>
-            <scope>provided</scope>
+            <scope>compile</scope> <!-- it is embedded in the bundle -->
         </dependency>
         <dependency>
             <groupId>io.netty</groupId>
             <artifactId>netty-buffer</artifactId>
             <version>${netty.version}</version>
-            <scope>provided</scope>
+            <scope>compile</scope> <!-- it is embedded in the bundle -->
         </dependency>
         <dependency>
             <groupId>io.netty</groupId>
             <artifactId>netty-transport</artifactId>
             <version>${netty.version}</version>
-            <scope>provided</scope>
+            <scope>compile</scope> <!-- it is embedded in the bundle -->
         </dependency>
         <dependency>
             <groupId>io.netty</groupId>
             <artifactId>netty-codec</artifactId>
             <version>${netty.version}</version>
-            <scope>provided</scope>
+            <scope>compile</scope> <!-- it is embedded in the bundle -->
         </dependency>
         <dependency>
             <groupId>io.netty</groupId>
             <artifactId>netty-handler</artifactId>
             <version>${netty.version}</version>
-            <scope>provided</scope>
+            <scope>compile</scope> <!-- it is embedded in the bundle -->
         </dependency>
 
         <!-- Dependencies on Oak testing modules -->


Reply via email to