Skip to content

Commit

Permalink
Updated to use guava over outdated google-collections
Browse files Browse the repository at this point in the history
  • Loading branch information
tequalsme committed Oct 30, 2013
1 parent 668b5ae commit 9e9c313
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions ingest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
Expand Down Expand Up @@ -100,7 +100,7 @@
</goals>
<configuration>
<!-- just grab the non-provided runtime dependencies -->
<includeArtifactIds>commons-lang,google-collections,lucene-core,lucene-analyzers,lucene-wikipedia,protobuf-java,accumulo-core,hadoop-core,libthrift,cloudtrace,zookeeper,commons-codec</includeArtifactIds>
<includeArtifactIds>commons-lang,guava,lucene-core,lucene-analyzers,lucene-wikipedia,protobuf-java,accumulo-core,hadoop-core,libthrift,cloudtrace,zookeeper,commons-codec</includeArtifactIds>
</configuration>
</execution>
</executions>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@
<version.accumulo>1.4.4</version.accumulo>
<version.commons-jexl>2.0.1</version.commons-jexl>
<version.commons-codec>1.5</version.commons-codec>
<version.guava>14.0.1</version.guava>
<version.kryo>1.04</version.kryo>
<version.log4j>1.2.16</version.log4j>
<version.log4j-extras>1.0</version.log4j-extras>
<version.lucene>3.0.2</version.lucene>
<version.lucene-analyzers>3.0.2</version.lucene-analyzers>
<version.lucene-wikipedia>3.0.2</version.lucene-wikipedia>
<version.protobuf>2.3.0</version.protobuf>
<version.googlecollections>1.0</version.googlecollections>
<version.libthrift>0.6.1</version.libthrift>
<version.zookeeper>3.3.1</version.zookeeper>
<version.minlog>1.2</version.minlog>
Expand Down Expand Up @@ -105,9 +105,9 @@
<version>${version.accumulo}</version>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<version>${version.googlecollections}</version>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${version.guava}</version>
</dependency>
<dependency>
<groupId>com.googlecode</groupId>
Expand Down
6 changes: 3 additions & 3 deletions query/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
<artifactId>commons-jexl</artifactId>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode</groupId>
Expand Down Expand Up @@ -116,7 +116,7 @@
</goals>
<configuration>
<!-- just grab the non-provided runtime dependencies -->
<includeArtifactIds>commons-lang,commons-codec,protobuf-java,libthrift,zookeeper,hadoop-core,commons-jexl,google-collections,kryo,asm,minlog,reflectasm,wikisearch-ingest,accumulo-core,cloudtrace</includeArtifactIds>
<includeArtifactIds>commons-lang,commons-codec,protobuf-java,libthrift,zookeeper,hadoop-core,commons-jexl,guava,kryo,asm,minlog,reflectasm,wikisearch-ingest,accumulo-core,cloudtrace</includeArtifactIds>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 9e9c313

Please sign in to comment.