aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-08-30 16:08:03 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2018-08-30 16:08:03 +0200
commit3ddc56ed1f6d36ef179c8359d5fc03ca3d1f9b47 (patch)
tree3b61dd4e4e77dc273895f02b3a187f1bbce718d9 /vespajlib/pom.xml
parentcef4c0f9d7c084f320e77abb2a93522acd7f3f53 (diff)
Sort dependencies on scope
Diffstat (limited to 'vespajlib/pom.xml')
-rw-r--r--vespajlib/pom.xml48
1 files changed, 28 insertions, 20 deletions
diff --git a/vespajlib/pom.xml b/vespajlib/pom.xml
index 880d039bc54..9894a7c0dc2 100644
--- a/vespajlib/pom.xml
+++ b/vespajlib/pom.xml
@@ -17,29 +17,27 @@
</description>
<dependencies>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <scope>provided</scope>
- </dependency>
+
+ <!-- compile scope -->
<dependency>
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
</dependency>
<dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-library</artifactId>
- <scope>test</scope>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
</dependency>
<dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-exec</artifactId>
</dependency>
+
+
+ <!-- provided scope -->
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
@@ -53,9 +51,22 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
+
+ <!-- test scope -->
<dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-library</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
@@ -68,15 +79,12 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-exec</artifactId>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>testutil</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+
</dependencies>
<build>
<plugins>