Skip to content

Commit 8ca7780

Browse files
authored
Replace notion-sdk-jvm with Spring Framework's HTTP Service Client (#196)
Signed-off-by: Stefano Cordio <[email protected]>
1 parent b7f8f1a commit 8ca7780

File tree

16 files changed

+1281
-858
lines changed

16 files changed

+1281
-858
lines changed

spring-batch-notion/pom.xml

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -38,35 +38,20 @@
3838
<url>https://github.com/spring-projects/spring-batch-extensions/tree/main/spring-batch-notion</url>
3939
</scm>
4040

41-
<properties>
42-
<notion-sdk-jvm.version>1.11.1</notion-sdk-jvm.version>
43-
</properties>
44-
4541
<dependencies>
4642
<!-- Compile -->
47-
<dependency>
48-
<groupId>com.github.seratch</groupId>
49-
<artifactId>notion-sdk-jvm-core</artifactId>
50-
<version>${notion-sdk-jvm.version}</version>
51-
</dependency>
52-
<dependency>
53-
<groupId>com.github.seratch</groupId>
54-
<artifactId>notion-sdk-jvm-httpclient</artifactId>
55-
<version>${notion-sdk-jvm.version}</version>
56-
</dependency>
57-
<dependency>
58-
<groupId>com.github.seratch</groupId>
59-
<artifactId>notion-sdk-jvm-slf4j2</artifactId>
60-
<version>${notion-sdk-jvm.version}</version>
61-
</dependency>
6243
<dependency>
6344
<groupId>org.springframework</groupId>
64-
<artifactId>spring-beans</artifactId>
45+
<artifactId>spring-web</artifactId>
6546
</dependency>
6647
<dependency>
6748
<groupId>org.springframework.batch</groupId>
6849
<artifactId>spring-batch-infrastructure</artifactId>
6950
</dependency>
51+
<dependency>
52+
<groupId>tools.jackson.core</groupId>
53+
<artifactId>jackson-databind</artifactId>
54+
</dependency>
7055
<!-- Test -->
7156
<dependency>
7257
<groupId>com.h2database</groupId>

0 commit comments

Comments
 (0)