Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Xmx1024m
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2012 - 2025 Contentstack
Copyright (c) 2012 - 2026 Contentstack

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
21 changes: 17 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
<dotenv-source.version>5.2.2</dotenv-source.version>
<rxjava-source.version>3.1.10</rxjava-source.version>
<rxjava-source.version>3.1.11</rxjava-source.version>
<retrofit-source.version>2.12.0</retrofit-source.version>
<converter-gson-version>2.12.0</converter-gson-version>
<okhttp.version>4.12.0</okhttp.version>
<okhttp.version>5.1.0</okhttp.version>
<jococo-plugin.version>0.8.13</jococo-plugin.version>
<lombok-source.version>1.18.38</lombok-source.version>
<junit-jupiter.version>5.11.4</junit-jupiter.version>
Expand Down Expand Up @@ -186,6 +186,13 @@
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
<scope>compile</scope>
<exclusions>
<!-- Exclude vulnerable junit 4.10 - not needed at runtime -->
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
Expand All @@ -207,18 +214,24 @@
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.20.1</version>
<version>1.21.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.1.21</version>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>com.warrenstrange</groupId>
<artifactId>googleauth</artifactId>
<version>1.5.0</version>
</dependency>
<!-- Override vulnerable transitive dependency from googleauth -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
</dependencies>


Expand Down
Loading