Skip to content

Commit 947253e

Browse files
committed
chore: try to set pom dependency in optional
1 parent ce9ad7f commit 947253e

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@
128128
<groupId>io.projectreactor</groupId>
129129
<artifactId>reactor-core</artifactId>
130130
<version>${reactor-core.version}</version>
131+
<optional>true</optional>
131132
</dependency>
132133

133134
<!-- unit test -->

sdk-component/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,23 @@
5757
<groupId>org.jetbrains.kotlin</groupId>
5858
</exclusion>
5959
</exclusions>
60+
<optional>true</optional>
6061
</dependency>
6162

6263
<!-- kotlin -->
6364
<dependency>
6465
<groupId>org.jetbrains.kotlin</groupId>
6566
<artifactId>kotlin-stdlib</artifactId>
6667
<version>${kotlin-stdlib.version}</version>
68+
<optional>true</optional>
6769
</dependency>
6870
<dependency>
6971
<groupId>org.jetbrains.kotlin</groupId>
7072
<artifactId>kotlin-stdlib-common</artifactId>
7173
<version>${kotlin-stdlib.version}</version>
74+
<optional>true</optional>
7275
</dependency>
76+
7377
<dependency>
7478
<groupId>org.junit.jupiter</groupId>
7579
<artifactId>junit-jupiter-engine</artifactId>

sdk-infrastructure/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,23 @@
6262
<groupId>org.slf4j</groupId>
6363
<artifactId>slf4j-api</artifactId>
6464
<version>${slf4j-api.version}</version>
65+
<optional>true</optional>
6566
</dependency>
6667

6768
<!-- grpc -->
6869
<dependency>
6970
<groupId>io.grpc</groupId>
7071
<artifactId>grpc-protobuf</artifactId>
7172
<version>${grpc.version}</version>
73+
<optional>true</optional>
7274
</dependency>
7375

7476
<!-- serialize -->
7577
<dependency>
7678
<groupId>com.fasterxml.jackson.core</groupId>
7779
<artifactId>jackson-databind</artifactId>
7880
<version>${jackson.version}</version>
81+
<optional>true</optional>
7982
</dependency>
8083

8184
<!-- unit test -->

0 commit comments

Comments
 (0)