Skip to content

Commit 9b3452a

Browse files
authored
Merge pull request #1050 from Baeldung/KTLN-774
KTLN-774 move code to new module
2 parents afb643f + 682b5b4 commit 9b3452a

File tree

6 files changed

+47
-13
lines changed

6 files changed

+47
-13
lines changed

core-kotlin-modules/core-kotlin-concurrency-3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ This module contains articles about concurrency in Kotlin.
1313
- [Merging Kotlin Flows](https://www.baeldung.com/kotlin/flow-merging)
1414
- [Avoiding the ConcurrentModificationException in Kotlin](https://www.baeldung.com/kotlin/concurrent-modification-exception)
1515
- [Convert RxJava Single to Kotlin Coroutine Deferred](https://www.baeldung.com/kotlin/rxjava-single-coroutine-deferred)
16-
- [Sequentially Concatenate 2 Kotlin Flows](https://www.baeldung.com/kotlin/flows-sequential-concatenation)
16+
1717
- More articles: [[<-- prev]](../core-kotlin-concurrency-2)

core-kotlin-modules/core-kotlin-concurrency-3/pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,6 @@
3030
<version>${rxcoroutines.version}</version>
3131
</dependency>
3232

33-
<dependency>
34-
<groupId>org.jetbrains.kotlinx</groupId>
35-
<artifactId>kotlinx-coroutines-reactor</artifactId>
36-
<version>1.6.0</version>
37-
</dependency>
38-
39-
<dependency>
40-
<groupId>io.projectreactor</groupId>
41-
<artifactId>reactor-core</artifactId>
42-
<version>3.4.11</version>
43-
</dependency>
44-
4533
</dependencies>
4634

4735
<properties>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
### Relevant articles:
3+
4+
- [Sequentially Concatenate 2 Kotlin Flows](https://www.baeldung.com/kotlin/flows-sequential-concatenation)
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<artifactId>core-kotlin-flows</artifactId>
5+
<name>core-kotlin-flows</name>
6+
<packaging>jar</packaging>
7+
8+
<parent>
9+
<groupId>com.baeldung</groupId>
10+
<artifactId>core-kotlin-modules</artifactId>
11+
<version>1.0.0-SNAPSHOT</version>
12+
</parent>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>junit</groupId>
17+
<artifactId>junit</artifactId>
18+
<version>${junit.version}</version>
19+
</dependency>
20+
21+
22+
23+
<dependency>
24+
<groupId>org.jetbrains.kotlinx</groupId>
25+
<artifactId>kotlinx-coroutines-reactor</artifactId>
26+
<version>1.6.0</version>
27+
</dependency>
28+
29+
<dependency>
30+
<groupId>io.projectreactor</groupId>
31+
<artifactId>reactor-core</artifactId>
32+
<version>3.4.11</version>
33+
</dependency>
34+
35+
</dependencies>
36+
37+
<properties>
38+
<junit.version>4.13.2</junit.version>
39+
</properties>
40+
41+
</project>

core-kotlin-modules/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<module>core-kotlin-datastructures-2</module>
5050
<module>core-kotlin-design-patterns</module>
5151
<module>core-kotlin-exceptions</module>
52+
<module>core-kotlin-flows</module>
5253
<module>core-kotlin-io</module>
5354
<module>core-kotlin-lang</module>
5455
<module>core-kotlin-lang-2</module>

0 commit comments

Comments
 (0)