mirror of https://github.com/apache/activemq.git
AMQ-6934 - Updating Jackson to 2.9.4
This commit is contained in:
parent
b77cb88f24
commit
d195b01f3b
|
@ -290,7 +290,8 @@ class DFSLevelDBClient(val store:DFSLevelDBStore) extends LevelDBClient(store) {
|
|||
|
||||
indexFileRefCounters.getOrElseUpdate(target.getName, new LongCounter()).incrementAndGet()
|
||||
using(dfs.create(target, true, 1024*32, dfsReplication.toShort, dfsBlockSize)) { os=>
|
||||
JsonCodec.mapper.writeValue(os, mf)
|
||||
var outputStream:OutputStream = os.asInstanceOf[OutputStream]
|
||||
JsonCodec.mapper.writeValue(outputStream, mf)
|
||||
}
|
||||
|
||||
snapshots += snapshot_id -> Snapshot(mf.current_manifest, Set(mf.files.toSeq:_*))
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -72,7 +72,7 @@
|
|||
<httpclient-version>4.5.3</httpclient-version>
|
||||
<httpcore-version>4.4.6</httpcore-version>
|
||||
<insight-version>1.2.0.Beta4</insight-version>
|
||||
<jackson-version>2.6.7</jackson-version>
|
||||
<jackson-version>2.9.4</jackson-version>
|
||||
<jasypt-version>1.9.2</jasypt-version>
|
||||
<jaxb-bundle-version>2.2.11_1</jaxb-bundle-version>
|
||||
<jdom-version>1.0</jdom-version>
|
||||
|
|
Loading…
Reference in New Issue