Cleanup for move to Accumulo 1.4.4

* set .gitignore to standard eclipse
* update versions of Accumulo to 1.4.4
* Pin slf4j binding to 1.5.8

Accumulo, Thrift, and YCSB all use different versions of slf4j, causing
runtime issues because everything is bundled together. Pin the version
to something in the middle that seems to work, even if it's not the
latest and greatest version.
This commit is contained in:
Mike Drob 2014-01-14 12:04:54 -05:00 коммит произвёл Sean Busbey
Родитель a997f7e6e9
Коммит d4f9a51d5e
3 изменённых файлов: 15 добавлений и 1 удалений

5
.gitignore поставляемый
Просмотреть файл

@ -3,3 +3,8 @@ target
# ignore output files from testing
output*
# ignore standard eclipse
.project
.classpath
.settings

Просмотреть файл

@ -93,4 +93,13 @@
<url>http://repository.apache.org/snapshots</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.8</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

Просмотреть файл

@ -45,7 +45,7 @@
<properties>
<maven.assembly.version>2.2.1</maven.assembly.version>
<hbase.version>0.92.1</hbase.version>
<accumulo.version>1.4.3</accumulo.version>
<accumulo.version>1.4.4</accumulo.version>
<cassandra.version>0.7.0</cassandra.version>
<infinispan.version>7.1.0.CR1</infinispan.version>
<openjpa.jdbc.version>2.1.1</openjpa.jdbc.version>