Skip to content

Commit 0362c3b

Browse files
authored
Merge pull request #32 from contentstack/staging
DX | 20-01-2025 | Release
2 parents d6fd79d + 39ebb88 commit 0362c3b

File tree

3 files changed

+35
-10
lines changed

3 files changed

+35
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2012 - 2024 Contentstack
3+
Copyright (c) 2012 - 2025 Contentstack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
A brief description of what changes project contains
44

5+
#### v1.0.3
6+
7+
- Fixed snyk issues
8+
59
#### v1.0.2
610

711
- Fixed the SRE issues

pom.xml

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.contentstack.sdk</groupId>
77
<artifactId>marketplace</artifactId>
8-
<version>1.0.2</version>
8+
<version>1.0.3</version>
99
<description>Contentstack Java Management SDK for Content Management API</description>
1010
<url>https://github.com/contentstack/contentstack-management-java/</url>
1111

@@ -16,17 +16,19 @@
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<surefire-report-plugin.version>3.1.2</surefire-report-plugin.version>
1818
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
19-
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
19+
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
2020
<dotenv-source.version>5.2.2</dotenv-source.version>
2121
<rxjava-source.version>3.1.6</rxjava-source.version>
22-
<retrofit-source.version>2.11.0</retrofit-source.version>
23-
<converter-gson-version>2.11.0</converter-gson-version>
22+
<retrofit-source.version>2.10.0</retrofit-source.version>
23+
<converter-gson-version>2.10.0</converter-gson-version>
24+
<okhttp.version>4.12.0</okhttp.version>
25+
<okio.version>3.4.0</okio.version>
2426
<logging.version>4.10.0</logging.version>
2527
<jococo-plugin.version>0.8.7</jococo-plugin.version>
26-
<lombok-source.version>1.18.32</lombok-source.version>
27-
<junit-jupiter.version>5.10.0</junit-jupiter.version>
28+
<lombok-source.version>1.18.36</lombok-source.version>
29+
<junit-jupiter.version>5.8.0</junit-jupiter.version>
2830
<junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version>
29-
<junit-vintage-engine.version>5.10.0</junit-vintage-engine.version>
31+
<junit-vintage-engine.version>5.8.0</junit-vintage-engine.version>
3032
<gson.version>2.10.1</gson.version>
3133
<maven-site-plugin.version>4.0.0-M9</maven-site-plugin.version>
3234
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
@@ -60,6 +62,11 @@
6062
<name>MIT</name>
6163
<url>https://www.opensource.org/licenses/mit-license.php</url>
6264
</license>
65+
<license>
66+
<name>EPL-1.0</name>
67+
<url>https://www.eclipse.org/legal/epl-v10.html</url>
68+
<distribution>repo</distribution>
69+
</license>
6370
</licenses>
6471

6572
<organization>
@@ -114,10 +121,20 @@
114121
<version>${converter-gson-version}</version>
115122
<scope>compile</scope>
116123
</dependency>
124+
<dependency>
125+
<groupId>com.squareup.okhttp3</groupId>
126+
<artifactId>okhttp</artifactId>
127+
<version>${okhttp.version}</version>
128+
</dependency>
129+
<dependency>
130+
<groupId>com.squareup.okio</groupId>
131+
<artifactId>okio</artifactId>
132+
<version>${okio.version}</version>
133+
</dependency>
117134
<dependency>
118135
<groupId>org.jetbrains</groupId>
119136
<artifactId>annotations</artifactId>
120-
<version>24.1.0</version>
137+
<version>26.0.1</version>
121138
<scope>provided</scope>
122139
</dependency>
123140
<dependency>
@@ -150,6 +167,11 @@
150167
<version>1.1.1</version>
151168
<scope>compile</scope>
152169
</dependency>
170+
<dependency>
171+
<groupId>org.jetbrains.kotlin</groupId>
172+
<artifactId>kotlin-stdlib</artifactId>
173+
<version>2.1.0</version>
174+
</dependency>
153175
</dependencies>
154176

155177
<build>
@@ -165,7 +187,6 @@
165187
<testFailureIgnore>true</testFailureIgnore>
166188
</configuration>
167189
</plugin>
168-
169190
<plugin>
170191
<groupId>org.apache.maven.plugins</groupId>
171192
<artifactId>maven-jxr-plugin</artifactId>

0 commit comments

Comments
 (0)