Skip to content

Commit d095a45

Browse files
authored
Kotlin okio dependencies (#56)
* add kotlin-stdlib and okio dependencies Both to be included in the jar * Update pom.xml
1 parent 1a029d9 commit d095a45

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

pom.xml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@
77
<artifactId>privacyidea-java-client</artifactId>
88
<version>1.2.0</version>
99
<packaging>jar</packaging>
10-
1110
<properties>
1211
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1312
</properties>
14-
1513
<build>
1614
<finalName>privacyidea-java-client</finalName>
1715
<plugins>
@@ -36,8 +34,11 @@
3634
<configuration>
3735
<artifactSet>
3836
<includes>
37+
<!-- Add the artifacts that should be included in the jar here -->
3938
<include>com.google.code.gson</include>
4039
<include>com.squareup.okhttp3</include>
40+
<include>org.jetbrains.kotlin</include>
41+
<include>com.squareup.okio</include>
4142
</includes>
4243
</artifactSet>
4344
</configuration>
@@ -75,7 +76,6 @@
7576
</plugin>
7677
</plugins>
7778
</build>
78-
7979
<dependencies>
8080
<dependency>
8181
<groupId>junit</groupId>
@@ -88,6 +88,16 @@
8888
<artifactId>okhttp</artifactId>
8989
<version>4.10.0</version>
9090
</dependency>
91+
<dependency>
92+
<groupId>org.jetbrains.kotlin</groupId>
93+
<artifactId>kotlin-stdlib</artifactId>
94+
<version>1.9.0</version>
95+
</dependency>
96+
<dependency>
97+
<groupId>com.squareup.okio</groupId>
98+
<artifactId>okio</artifactId>
99+
<version>3.4.0</version>
100+
</dependency>
91101
<dependency>
92102
<groupId>com.google.code.gson</groupId>
93103
<artifactId>gson</artifactId>
@@ -106,4 +116,4 @@
106116
<scope>test</scope>
107117
</dependency>
108118
</dependencies>
109-
</project>
119+
</project>

0 commit comments

Comments
 (0)