Do not deploy an unused test jar

This commit is contained in:
Trustin Lee 2014-01-09 19:43:47 +09:00
parent 731968de9d
commit 2b00227b30

View File

@ -58,12 +58,6 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.caliper</groupId>
<artifactId>caliper</artifactId>
@ -74,7 +68,6 @@
<build>
<plugins>
<!-- run each test in separate JVM -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@ -83,19 +76,6 @@
<forkMode>always</forkMode>
</configuration>
</plugin>
<!-- attach and deploy tests artifact -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>