Bind the tests-common dependency to test <scope> only
authorAlexandre Montplaisir <alexmonthy@efficios.com>
Mon, 27 Mar 2017 19:14:33 +0000 (15:14 -0400)
committerAlexandre Montplaisir <alexmonthy@efficios.com>
Mon, 27 Mar 2017 19:16:20 +0000 (15:16 -0400)
It should only be used by test code.

Signed-off-by: Alexandre Montplaisir <alexmonthy@efficios.com>
pom.xml

diff --git a/pom.xml b/pom.xml
index 07301b128687b4fa9aacf0b96159b2b5a9948005..7107870d2ca15ece099c4b37329e53a3ac8af457 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 
   <dependencyManagement>
     <dependencies>
+      <!-- Regular Maven dependencies -->
+      <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+        <version>1.2.17</version>
+      </dependency>
+
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>RELEASE</version>
+        <scope>test</scope>
+      </dependency>
+
       <!-- System dependencies, should have been installed by UST -->
       <dependency>
         <groupId>org.lttng.ust.agent</groupId>
         <groupId>org.lttng.ust</groupId>
         <artifactId>lttng-ust-java-tests-common</artifactId>
         <version>1.1.0-SNAPSHOT</version>
-      </dependency>
-
-      <!-- Regular Maven dependencies -->
-      <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>log4j</artifactId>
-        <version>1.2.17</version>
-      </dependency>
-
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>RELEASE</version>
         <scope>test</scope>
       </dependency>
     </dependencies>
This page took 0.023476 seconds and 4 git commands to generate.