Skip to content

Commit

Permalink
update infinispan and metrics dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed May 22, 2013
1 parent 67813a2 commit 03b5230
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Expand Up @@ -4,7 +4,9 @@
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.concurrent.TimeUnit;

import org.infinispan.EmbeddedMetadata;
import org.infinispan.container.InternalEntryFactory;
import org.infinispan.container.InternalEntryFactoryImpl;
import org.infinispan.container.entries.InternalCacheEntry;
Expand Down Expand Up @@ -91,8 +93,7 @@ private void storeBufferInBLOBCache() throws IOException {
final InternalCacheEntry cacheEntry;
if (c == null) {
cacheEntry =
entryFactory.create(chunkKey, chunk,
(EntryVersion) null);
entryFactory.create(chunkKey, chunk, new EmbeddedMetadata.Builder().build());
} else {
cacheEntry = entryFactory.create(chunkKey, chunk, c);
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -27,13 +27,13 @@
<activemq.version>5.7.0</activemq.version>
<jersey.version>1.17.1</jersey.version>
<enunciate.version>1.26.2</enunciate.version>
<infinispan.version>5.3.0.Beta1</infinispan.version>
<infinispan.version>5.3.0.Beta2</infinispan.version>
<jgroups.version>3.3.0.CR2</jgroups.version>
<modeshape.version>3.3-SNAPSHOT</modeshape.version>
<sesame.version>2.7.0</sesame.version>
<slf4j.version>1.7.5</slf4j.version>
<spring.version>3.2.0.RELEASE</spring.version>
<metrics.version>3.0.0-BETA2</metrics.version>
<metrics.version>3.0.0-BETA3</metrics.version>

<!-- https://github.com/github/maven-plugins/blob/master/README.md -->
<github.global.server>github</github.global.server>
Expand Down

0 comments on commit 03b5230

Please sign in to comment.