Skip to content

Commit

Permalink
test jars should be in test scope
Browse files Browse the repository at this point in the history
  • Loading branch information
aaudiber committed Feb 6, 2016
1 parent bbd62f9 commit aa21073
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions core/client-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<artifactId>alluxio-core-common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion keyvalue/client-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<groupId>org.alluxio.alluxio</groupId>
<artifactId>alluxio-core-client-internal</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
4 changes: 3 additions & 1 deletion minicluster/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,14 @@
<artifactId>alluxio-core-client-internal</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.alluxio.alluxio</groupId>
<artifactId>alluxio-core-server</artifactId>
<type>test-jar</type>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
16 changes: 9 additions & 7 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,6 @@
<artifactId>alluxio-core-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.alluxio.alluxio</groupId>
<artifactId>alluxio-core-server</artifactId>
<type>test-jar</type>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.alluxio.alluxio</groupId>
<artifactId>alluxio-keyvalue-client-internal</artifactId>
Expand Down Expand Up @@ -90,6 +83,15 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<!-- Other projects' test-jars -->
<dependency>
<groupId>org.alluxio.alluxio</groupId>
<artifactId>alluxio-core-server</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
Expand Down

0 comments on commit aa21073

Please sign in to comment.