Skip to content

Commit 0fdf83e

Browse files
shaileshmishrashaileshmishra
authored andcommitted
🔧
✅ initial commit 🔧 fix client
1 parent 91368dc commit 0fdf83e

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

pom.xml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@
8787
<jococo-plugin.version>0.8.5</jococo-plugin.version>
8888
<lombok-source.version>1.18.18</lombok-source.version>
8989
<junit-jupiter.version>5.7.1</junit-jupiter.version>
90-
<jackson-databind.version>2.11.1</jackson-databind.version>
90+
<!-- <jackson-databind.version>2.11.1</jackson-databind.version>-->
91+
<gson.version>2.8.6</gson.version>
9192
<maven-site-plugin.version>3.3</maven-site-plugin.version>
9293
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
9394
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
@@ -96,6 +97,11 @@
9697
</properties>
9798

9899
<dependencies>
100+
<dependency>
101+
<groupId>com.google.code.gson</groupId>
102+
<artifactId>gson</artifactId>
103+
<version>${gson.version}</version>
104+
</dependency>
99105
<dependency>
100106
<groupId>io.github.cdimascio</groupId>
101107
<artifactId>java-dotenv</artifactId>
@@ -126,11 +132,11 @@
126132
<artifactId>lombok</artifactId>
127133
<version>${lombok-source.version}</version>
128134
</dependency>
129-
<dependency>
130-
<groupId>com.fasterxml.jackson.core</groupId>
131-
<artifactId>jackson-databind</artifactId>
132-
<version>${jackson-databind.version}</version>
133-
</dependency>
135+
<!-- <dependency>-->
136+
<!-- <groupId>com.fasterxml.jackson.core</groupId>-->
137+
<!-- <artifactId>jackson-databind</artifactId>-->
138+
<!-- <version>${jackson-databind.version}</version>-->
139+
<!-- </dependency>-->
134140
<dependency>
135141
<groupId>org.junit.jupiter</groupId>
136142
<artifactId>junit-jupiter</artifactId>
@@ -142,11 +148,11 @@
142148
<artifactId>junit-vintage-engine</artifactId>
143149
<version>5.7.0</version>
144150
</dependency>
145-
<dependency>
146-
<groupId>com.squareup.retrofit2</groupId>
147-
<artifactId>converter-jackson</artifactId>
148-
<version>2.9.0</version>
149-
</dependency>
151+
<!-- <dependency>-->
152+
<!-- <groupId>com.squareup.retrofit2</groupId>-->
153+
<!-- <artifactId>converter-jackson</artifactId>-->
154+
<!-- <version>2.9.0</version>-->
155+
<!-- </dependency>-->
150156
</dependencies>
151157

152158
<build>

0 commit comments

Comments
 (0)