aboutsummaryrefslogtreecommitdiffstats
path: root/guava-testlib/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'guava-testlib/pom.xml')
-rw-r--r--guava-testlib/pom.xml37
1 files changed, 11 insertions, 26 deletions
diff --git a/guava-testlib/pom.xml b/guava-testlib/pom.xml
index 2351e09..fed06d7 100644
--- a/guava-testlib/pom.xml
+++ b/guava-testlib/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.google.guava</groupId>
<artifactId>guava-parent</artifactId>
- <version>14.0.1</version>
+ <version>11.0.2</version>
</parent>
<artifactId>guava-testlib</artifactId>
<name>Guava Testing Library</name>
@@ -15,12 +15,6 @@
</description>
<dependencies>
<dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <version>1.3.9</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
<groupId>${project.groupId}</groupId>
<artifactId>guava</artifactId>
<version>${project.version}</version>
@@ -31,45 +25,36 @@
<version>4.8.2</version>
</dependency>
<dependency>
- <groupId>org.truth0</groupId>
- <artifactId>truth</artifactId>
- <version>0.10</version>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwt-dev</artifactId>
+ <version>2.2.0</version>
+ <scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
+ <source>1.5</source>
+ <target>1.5</target>
</configuration>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
- <phase>post-integration-test</phase>
- <goals><goal>jar</goal></goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8</version>
- <executions>
- <execution>
- <id>attach-docs</id>
- <phase>post-integration-test</phase>
- <goals><goal>jar</goal></goals>
+ <phase>verify</phase>
+ <goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
<sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>test</testSourceDirectory>
</build>
</project>