Skip to content

Commit 1a16bdc

Browse files
vunamtientienvn
and
tienvn
authored
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

+3
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

+24
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

+4-4
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) {

libraries-data-io/src/test/java/com/baeldung/libraries/smooks/SmooksIntegrationTest.java renamed to libraries-data-io-2/src/test/java/com/baeldung/libraries/smooks/SmooksIntegrationTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88
import com.baeldung.libraries.smooks.model.Supplier;
99
import org.junit.Test;
1010
import org.milyn.validation.ValidationResult;
11+
1112
import java.text.SimpleDateFormat;
13+
1214
import static org.hamcrest.Matchers.*;
13-
import static org.junit.Assert.*;
15+
import static org.junit.Assert.assertThat;
1416

1517
public class SmooksIntegrationTest {
1618

libraries-data-io/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@
33
This module contains articles about IO data processing libraries.
44

55
### Relevant articles
6-
- [Introduction To Kryo](https://www.baeldung.com/kryo)
76
- [Parsing YAML with SnakeYAML](https://www.baeldung.com/java-snake-yaml)
8-
- [Introduction to Smooks](https://www.baeldung.com/smooks)
97
- [Introduction to OpenCSV](https://www.baeldung.com/opencsv)
108
- [Interact with Google Sheets from Java](https://www.baeldung.com/google-sheets-java-client)
119
- [Introduction To Docx4J](https://www.baeldung.com/docx4j)
1210
- [Breaking YAML Strings Over Multiple Lines](https://www.baeldung.com/yaml-multi-line)
1311
- [Different Serialization Approaches for Java](https://www.baeldung.com/java-serialization-approaches)
14-
- [A Guide to etcd](https://www.baeldung.com/java-etcd-guide)

libraries-data-io/pom.xml

-25
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,11 @@
1313
</parent>
1414

1515
<dependencies>
16-
<dependency>
17-
<groupId>com.esotericsoftware</groupId>
18-
<artifactId>kryo</artifactId>
19-
<version>${kryo.version}</version>
20-
</dependency>
2116
<dependency>
2217
<groupId>org.yaml</groupId>
2318
<artifactId>snakeyaml</artifactId>
2419
<version>${snakeyaml.version}</version>
2520
</dependency>
26-
<dependency>
27-
<groupId>org.milyn</groupId>
28-
<artifactId>milyn-smooks-all</artifactId>
29-
<version>${smooks.version}</version>
30-
</dependency>
31-
<dependency>
32-
<groupId>org.mvel</groupId>
33-
<artifactId>mvel2</artifactId>
34-
<version>${mvel2.version}</version>
35-
</dependency>
3621
<!-- https://mvnrepository.com/artifact/com.opencsv/opencsv -->
3722
<dependency>
3823
<groupId>com.opencsv</groupId>
@@ -100,19 +85,10 @@
10085
<artifactId>protobuf-java</artifactId>
10186
<version>${google-protobuf.version}</version>
10287
</dependency>
103-
<!-- jetcd core api -->
104-
<dependency>
105-
<groupId>io.etcd</groupId>
106-
<artifactId>jetcd-core</artifactId>
107-
<version>${jetcd-version}</version>
108-
</dependency>
10988
</dependencies>
11089

11190
<properties>
11291
<snakeyaml.version>2.2</snakeyaml.version>
113-
<kryo.version>4.0.1</kryo.version>
114-
<smooks.version>1.7.1</smooks.version>
115-
<mvel2.version>2.5.2.Final</mvel2.version>
11692
<opencsv.version>5.8</opencsv.version>
11793
<google-api.version>1.23.0</google-api.version>
11894
<google-sheets.version>v4-rev493-1.21.0</google-sheets.version>
@@ -122,7 +98,6 @@
12298
<yamlbeans.version>1.15</yamlbeans.version>
12399
<apache-thrift.version>0.14.2</apache-thrift.version>
124100
<google-protobuf.version>3.17.3</google-protobuf.version>
125-
<jetcd-version>0.7.7</jetcd-version>
126101
</properties>
127102

128103
</project>

0 commit comments

Comments
 (0)