Skip to content

Commit 220f151

Browse files
[*] dependencies update
1 parent da5caa3 commit 220f151

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

collections/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
implementation group: 'com.epam.deltix', name: 'dfp', version: dfpVersion
1818
implementation group: 'com.epam.deltix', name: 'gflog-api', version: gflogVersion
1919

20-
testImplementation 'commons-collections:commons-collections:3.2.1'
20+
testImplementation 'commons-collections:commons-collections:3.2.2'
2121
}
2222

2323
ext {

util/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
implementation 'com.epam.deltix:thread-affinity:1.0.4'
1414

1515
implementation 'org.apache.commons:commons-lang3:3.7'
16-
implementation 'org.apache.commons:commons-compress:1.19'
16+
implementation 'org.apache.commons:commons-compress:1.26.0'
1717

1818
implementation 'javax.xml.bind:jaxb-api:2.2.8'
1919
implementation 'com.sun.xml.bind:jaxb-impl:2.3.0'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package com.epam.deltix.util.archive;
2+
3+
import com.epam.deltix.qsrv.util.archive.DXDataInputStream;
4+
import org.junit.Test;
5+
6+
import java.io.File;
7+
import java.io.IOException;
8+
9+
public class Test_DXData {
10+
11+
@Test
12+
public void test() throws IOException {
13+
14+
File file = File.createTempFile("X31", "dxdata");
15+
16+
DXDataInputStream in = new DXDataInputStream(file);
17+
}
18+
}

0 commit comments

Comments
 (0)