aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorSam Berlin <sameb@google.com>2012-01-13 18:22:35 -0500
committerSam Berlin <sameb@google.com>2012-01-13 18:22:35 -0500
commit45ef01760942b9575a6094effeb4eb034db9a113 (patch)
tree0fd922be07e1a722085a6685957ff31a2ce0a87f /pom.xml
parentd9b62c213e28f42cba6c1c4bf625fc0dc6d0d8e2 (diff)
downloadguice-45ef01760942b9575a6094effeb4eb034db9a113.tar.gz
Cleanup a few things:
1) Remove invalid annotation. 2) Update to Guava 11.0.1, from r9. 3) Remove some unused files. 4) Forcibly keep Throwables, since servlet uses it but core doesn't (so jarjar was wiping it). 5) Disable failing Multibinder test. R=jessewilson DELTA=193 (10 added, 174 deleted, 9 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=4087
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 001892bc..3b764843 100644
--- a/pom.xml
+++ b/pom.xml
@@ -234,6 +234,11 @@ See the Apache License Version 2.0 for the specific language governing permissio
<keep>
<pattern>com.googlecode.**</pattern>
</keep>
+ <keep>
+ <!-- the servlet extension uses this but core doesn't,
+ so we explicitly instruct the build to keep it. -->
+ <pattern>com.google.common.base.Throwables</pattern>
+ </keep>
</rules>
</configuration>
<!--
@@ -319,7 +324,7 @@ See the Apache License Version 2.0 for the specific language governing permissio
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<!-- Exclude to mirror ant build -->
- <addMavenDescriptor>false</addMavenDescriptor>
+ <addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
<executions>