Skip to content

Commit d1f9d9d

Browse files
committed
KTLN-651 move code
1 parent fbd7bf5 commit d1f9d9d

File tree

10 files changed

+56
-7
lines changed

10 files changed

+56
-7
lines changed

kotlin-libraries-2/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ This module contains articles about Kotlin Libraries.
1414
- [Kotlin Coroutines and RxKotlin Comparison](https://www.baeldung.com/kotlin/coroutines-vs-rxkotlin)
1515
- [Introduction to Kotlin Documentation with Dokka](https://www.baeldung.com/kotlin/dokka-documentation-introduction)
1616
- [Read and Write to Excel With Kotlin](https://www.baeldung.com/kotlin/excel-read-write)
17-
- [Introduction to KotlinPoet](https://www.baeldung.com/kotlin/kotlinpoet)
1817
- More articles: [[<-- prev]](/kotlin-libraries)

kotlin-libraries-2/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,6 @@
124124
<artifactId>kotlinx-cli-jvm</artifactId>
125125
<version>${kotlinx-cli-jvm.version}</version>
126126
</dependency>
127-
<dependency>
128-
<groupId>com.squareup</groupId>
129-
<artifactId>kotlinpoet-jvm</artifactId>
130-
<version>${kotlinpoet-jvm.version}</version>
131-
</dependency>
132127
</dependencies>
133128
<build>
134129
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
@@ -311,7 +306,6 @@
311306
<jackson.version>2.13.3</jackson.version>
312307
<kotlin.csv.version>1.3.0</kotlin.csv.version>
313308
<kotlinx-cli-jvm.version>0.3.5</kotlinx-cli-jvm.version>
314-
<kotlinpoet-jvm.version>1.16.0</kotlinpoet-jvm.version>
315309
<moshi.version>1.14.0</moshi.version>
316310
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
317311
<dokka-maven-plugin.version>1.7.20</dokka-maven-plugin.version>

kotlin-libraries-3/.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/bin/
2+
3+
#ignore gradle
4+
.gradle/
5+
6+
7+
#ignore build and generated files
8+
build/
9+
node/
10+
out/
11+
12+
#ignore installed node modules and package lock file
13+
node_modules/
14+
package-lock.json

kotlin-libraries-3/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## Kotlin Libraries
2+
3+
This module contains articles about Kotlin Libraries.
4+
5+
### Relevant articles:
6+
7+
- [Introduction to KotlinPoet](https://www.baeldung.com/kotlin/kotlinpoet)
8+

kotlin-libraries-3/pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<artifactId>kotlin-libraries-3</artifactId>
6+
<name>kotlin-libraries-3</name>
7+
<packaging>jar</packaging>
8+
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>kotlin-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.squareup</groupId>
18+
<artifactId>kotlinpoet-jvm</artifactId>
19+
<version>${kotlinpoet-jvm.version}</version>
20+
</dependency>
21+
</dependencies>
22+
<build>
23+
24+
</build>
25+
26+
<properties>
27+
28+
<kotlinpoet-jvm.version>1.16.0</kotlinpoet-jvm.version>
29+
30+
</properties>
31+
32+
</project>

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@
399399
<module>kotlin-lambda</module>
400400
<module>kotlin-libraries</module>
401401
<module>kotlin-libraries-2</module>
402+
<module>kotlin-libraries-3</module>
402403
<module>kotlin-libraries-data</module>
403404
<module>kotlin-libraries-http</module>
404405
<module>kotlin-libraries-orm</module>
@@ -480,6 +481,7 @@
480481
<module>kotlin-lambda</module>
481482
<module>kotlin-libraries</module>
482483
<module>kotlin-libraries-2</module>
484+
<module>kotlin-libraries-3</module>
483485
<module>kotlin-libraries-data</module>
484486
<module>kotlin-libraries-http</module>
485487
<module>kotlin-libraries-orm</module>

0 commit comments

Comments
 (0)