Skip to content

Commit 1a16bdc

Browse files
vunamtientienvn
andauthored
BAEL-117565-Moving-some-article-links-libraries-data-io (#17476)
Co-authored-by: tienvn <[email protected]>
1 parent e61ee98 commit 1a16bdc

27 files changed

+34
-33
lines changed

libraries-data-io-2/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
### Relevant Articles:
22
- [Serialization with FlatBuffers in Java](https://www.baeldung.com/java-flatbuffers-serialization)
33
- [Blazing Fast Serialization Using Apache Fury](https://www.baeldung.com/java-apache-fury-serialization)
4+
- [A Guide to etcd](https://www.baeldung.com/java-etcd-guide)
5+
- [Introduction To Kryo](https://www.baeldung.com/kryo)
6+
- [Introduction to Smooks](https://www.baeldung.com/smooks)

libraries-data-io-2/pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
<protobuff.version>4.27.0</protobuff.version>
2424
<protobuf.plugin.version>2.1.1</protobuf.plugin.version>
2525
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
26+
<kryo.version>4.0.1</kryo.version>
27+
<smooks.version>1.7.1</smooks.version>
28+
<mvel2.version>2.5.2.Final</mvel2.version>
29+
<jetcd-version>0.7.7</jetcd-version>
2630
</properties>
2731

2832
<dependencies>
@@ -47,6 +51,26 @@
4751
<artifactId>protobuf-java</artifactId>
4852
<version>${protobuff.version}</version>
4953
</dependency>
54+
<dependency>
55+
<groupId>com.esotericsoftware</groupId>
56+
<artifactId>kryo</artifactId>
57+
<version>${kryo.version}</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.milyn</groupId>
61+
<artifactId>milyn-smooks-all</artifactId>
62+
<version>${smooks.version}</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.mvel</groupId>
66+
<artifactId>mvel2</artifactId>
67+
<version>${mvel2.version}</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>io.etcd</groupId>
71+
<artifactId>jetcd-core</artifactId>
72+
<version>${jetcd-version}</version>
73+
</dependency>
5074
</dependencies>
5175

5276

libraries-data-io/src/main/java/com/baeldung/etcd/JetcdExample.java renamed to libraries-data-io-2/src/main/java/com/baeldung/etcd/JetcdExample.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.baeldung.etcd;
22

3-
import java.util.concurrent.CompletableFuture;
4-
5-
import io.etcd.jetcd.kv.GetResponse;
63
import io.etcd.jetcd.ByteSequence;
7-
import io.etcd.jetcd.KV;
84
import io.etcd.jetcd.Client;
5+
import io.etcd.jetcd.KV;
6+
import io.etcd.jetcd.kv.GetResponse;
7+
8+
import java.util.concurrent.CompletableFuture;
99

1010
public class JetcdExample {
1111
public static void main(String[] args) {

0 commit comments

Comments
 (0)