Skip to content

Commit 6da99e9

Browse files
authored
chore: simplify dependencies (#65)
1 parent e1c62c3 commit 6da99e9

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ java-cosmos is a client for Azure CosmosDB 's SQL API (also called documentdb fo
2323
<dependency>
2424
<groupId>com.github.thunderz99</groupId>
2525
<artifactId>java-cosmos</artifactId>
26-
<version>0.5.11</version>
26+
<version>0.5.12</version>
2727
</dependency>
2828
```
2929

pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.thunderz99</groupId>
55
<artifactId>java-cosmos</artifactId>
66
<packaging>jar</packaging>
7-
<version>0.5.11</version>
7+
<version>0.5.12</version>
88
<name>${project.groupId}:${project.artifactId}$</name>
99
<description>A lightweight Azure CosmosDB client for Java</description>
1010
<url>https://github.com/thunderz99/java-cosmos</url>
@@ -68,31 +68,31 @@
6868
<version>4.4</version>
6969
</dependency>
7070

71-
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
72-
<dependency>
73-
<groupId>com.fasterxml.jackson.core</groupId>
74-
<artifactId>jackson-databind</artifactId>
75-
<version>2.13.3</version>
76-
</dependency>
77-
78-
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
79-
<dependency>
80-
<groupId>com.fasterxml.jackson.core</groupId>
81-
<artifactId>jackson-core</artifactId>
82-
<version>2.13.3</version>
83-
</dependency>
84-
8571
<!-- https://mvnrepository.com/artifact/com.microsoft.azure/azure-documentdb -->
8672
<dependency>
8773
<groupId>com.microsoft.azure</groupId>
8874
<artifactId>azure-documentdb</artifactId>
8975
<version>2.6.4</version>
76+
<exclusions>
77+
<exclusion>
78+
<groupId>com.fasterxml.jackson.core</groupId>
79+
<artifactId>jackson-databind</artifactId>
80+
</exclusion>
81+
<exclusion>
82+
<groupId>com.fasterxml.jackson.core</groupId>
83+
<artifactId>jackson-annotations</artifactId>
84+
</exclusion>
85+
<exclusion>
86+
<groupId>com.fasterxml.jackson.core</groupId>
87+
<artifactId>jackson-core</artifactId>
88+
</exclusion>
89+
</exclusions>
9090
</dependency>
9191

9292
<dependency>
9393
<groupId>com.azure</groupId>
9494
<artifactId>azure-cosmos</artifactId>
95-
<version>4.30.1</version>
95+
<version>4.31.0</version>
9696
</dependency>
9797

9898
<dependency>

0 commit comments

Comments
 (0)