File tree Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Expand file tree Collapse file tree 2 files changed +49
-1
lines changed 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"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5
+ >
6
+ <modelVersion >4.0.0</modelVersion >
7
+ <artifactId >kotlin-api</artifactId >
8
+ <name >kotlin-api</name >
9
+ <packaging >jar</packaging >
10
+
11
+ <parent >
12
+ <artifactId >kotlin-modules</artifactId >
13
+ <groupId >com.baeldung</groupId >
14
+ <version >1.0.0-SNAPSHOT</version >
15
+ </parent >
16
+
17
+ <build >
18
+ <sourceDirectory >src/main/kotlin</sourceDirectory >
19
+ <plugins >
20
+ <plugin >
21
+ <groupId >org.jetbrains.kotlin</groupId >
22
+ <artifactId >kotlin-maven-plugin</artifactId >
23
+ <version >${kotlin.version} </version >
24
+ <executions >
25
+ <execution >
26
+ <id >compile</id >
27
+ <phase >compile</phase >
28
+ <goals >
29
+ <goal >compile</goal >
30
+ </goals >
31
+ </execution >
32
+ <execution >
33
+ <id >test-compile</id >
34
+ <phase >test-compile</phase >
35
+ <goals >
36
+ <goal >test-compile</goal >
37
+ </goals >
38
+ </execution >
39
+ </executions >
40
+ <configuration >
41
+ <args >
42
+ <arg >-Xexplicit-api=strict</arg >
43
+ </args >
44
+ </configuration >
45
+ </plugin >
46
+ </plugins >
47
+ </build >
48
+ </project >
Original file line number Diff line number Diff line change 364
364
<!-- <module>koin-guide</module> --> <!-- not a Maven module -->
365
365
<!-- <module>kotest</module> --> <!-- not a Maven module -->
366
366
<!-- <module>kotlin-apache-kafka</module> --> <!-- not a Maven module -->
367
- <!-- <module>kotlin-api</module> --> <!-- not a Maven module -- >
367
+ <module >kotlin-api</module >
368
368
<!-- <module>kotlin-build-plugins</module> --> <!-- not a Maven module -->
369
369
<module >kotlin-immutable-collections</module >
370
370
<!-- <module>kotlin-js</module> --> <!-- not a Maven module -->
You can’t perform that action at this time.
0 commit comments