File tree Expand file tree Collapse file tree 10 files changed +56
-7
lines changed
src/test/kotlin/com/baeldung/kotlin/kotlinpoet Expand file tree Collapse file tree 10 files changed +56
-7
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,4 @@ This module contains articles about Kotlin Libraries.
14
14
- [ Kotlin Coroutines and RxKotlin Comparison] ( https://www.baeldung.com/kotlin/coroutines-vs-rxkotlin )
15
15
- [ Introduction to Kotlin Documentation with Dokka] ( https://www.baeldung.com/kotlin/dokka-documentation-introduction )
16
16
- [ 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 )
18
17
- More articles: [[ <-- prev]] ( /kotlin-libraries )
Original file line number Diff line number Diff line change 124
124
<artifactId >kotlinx-cli-jvm</artifactId >
125
125
<version >${kotlinx-cli-jvm.version} </version >
126
126
</dependency >
127
- <dependency >
128
- <groupId >com.squareup</groupId >
129
- <artifactId >kotlinpoet-jvm</artifactId >
130
- <version >${kotlinpoet-jvm.version} </version >
131
- </dependency >
132
127
</dependencies >
133
128
<build >
134
129
<sourceDirectory >${project.basedir} /src/main/kotlin</sourceDirectory >
311
306
<jackson .version>2.13.3</jackson .version>
312
307
<kotlin .csv.version>1.3.0</kotlin .csv.version>
313
308
<kotlinx-cli-jvm .version>0.3.5</kotlinx-cli-jvm .version>
314
- <kotlinpoet-jvm .version>1.16.0</kotlinpoet-jvm .version>
315
309
<moshi .version>1.14.0</moshi .version>
316
310
<maven-compiler-plugin .version>3.10.1</maven-compiler-plugin .version>
317
311
<dokka-maven-plugin .version>1.7.20</dokka-maven-plugin .version>
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
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 >
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 399
399
<module >kotlin-lambda</module >
400
400
<module >kotlin-libraries</module >
401
401
<module >kotlin-libraries-2</module >
402
+ <module >kotlin-libraries-3</module >
402
403
<module >kotlin-libraries-data</module >
403
404
<module >kotlin-libraries-http</module >
404
405
<module >kotlin-libraries-orm</module >
480
481
<module >kotlin-lambda</module >
481
482
<module >kotlin-libraries</module >
482
483
<module >kotlin-libraries-2</module >
484
+ <module >kotlin-libraries-3</module >
483
485
<module >kotlin-libraries-data</module >
484
486
<module >kotlin-libraries-http</module >
485
487
<module >kotlin-libraries-orm</module >
You can’t perform that action at this time.
0 commit comments