Skip to content

Commit 3509899

Browse files
Merge pull request #90 from contentstack/next
Next : Utils SDK Updated To The Latest Version
2 parents bec44d8 + 91ee048 commit 3509899

File tree

4 files changed

+155
-152
lines changed

4 files changed

+155
-152
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## v1.12.3
4+
5+
### Date: 28-SEP-2023
6+
7+
- Updated Latest version of Utils SDK
8+
- Snyk Issues fixed
9+
310
## v1.12.2
411

512
### Date: 08-AUG-2023

pom.xml

+51-66
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>java</artifactId>
8-
<version>1.12.2</version>
8+
<version>1.12.3</version>
99
<packaging>jar</packaging>
1010
<name>contentstack-java</name>
1111
<description>Java SDK for Contentstack Content Delivery API</description>
@@ -20,23 +20,23 @@
2020
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
2121
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
2222
<dotenv-source.version>3.0.0</dotenv-source.version>
23-
<rxjava-source.version>3.1.6</rxjava-source.version>
23+
<rxjava-source.version>3.1.8</rxjava-source.version>
2424
<retrofit-source.version>2.9.0</retrofit-source.version>
25-
<loggin.version>4.11.0</loggin.version>
25+
<loggin.version>5.0.0-alpha.11</loggin.version>
2626
<jococo-plugin.version>0.8.5</jococo-plugin.version>
27-
<lombok-source.version>1.18.28</lombok-source.version>
28-
<junit-jupiter.version>5.9.2</junit-jupiter.version>
27+
<lombok-source.version>1.18.30</lombok-source.version>
28+
<junit-jupiter.version>5.10.0</junit-jupiter.version>
2929
<junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version>
3030
<gson.version>2.8.8</gson.version>
3131
<json-simple-version>1.1.1</json-simple-version>
3232
<maven-site-plugin.version>3.3</maven-site-plugin.version>
3333
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
3434
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
3535
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
36-
<json-version>20230227</json-version>
36+
<json-version>20230618</json-version>
3737
<jacoco-maven-plugin-version>0.8.7</jacoco-maven-plugin-version>
3838
<maven-release-plugin-version>2.5.3</maven-release-plugin-version>
39-
<contentstack-utils-version>1.2.3</contentstack-utils-version>
39+
<contentstack-utils-version>1.2.4</contentstack-utils-version>
4040
</properties>
4141

4242
<parent>
@@ -54,19 +54,19 @@
5454

5555
<issueManagement>
5656
<system>GitHub Issues</system>
57-
<url>http://github.com/contentstack/contentstack-java/issues</url>
57+
<url>https://github.com/contentstack/contentstack-java/issues</url>
5858
</issueManagement>
5959

6060
<licenses>
6161
<license>
6262
<name>MIT</name>
63-
<url>http://www.opensource.org/licenses/mit-license.php</url>
63+
<url>https://www.opensource.org/licenses/mit-license.php</url>
6464
</license>
6565
</licenses>
6666

6767
<organization>
68-
<name>Contentstack.</name>
69-
<url>http://contentstack.com</url>
68+
<name>Contentstack</name>
69+
<url>https://contentstack.com</url>
7070
</organization>
7171

7272
<developers>
@@ -87,19 +87,18 @@
8787

8888
<distributionManagement>
8989

90-
<!-- Maven Snapshot Repository -->
90+
<!-- Maven Snapshot Repository -->
9191
<snapshotRepository>
9292
<id>ossrh</id>
9393
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
9494
</snapshotRepository>
9595

9696
<!--GitHub Packages-->
97-
<!-- <repository>-->
97+
<!-- <snapshotRepository>-->
9898
<!-- <id>github</id>-->
9999
<!-- <url>https://maven.pkg.github.com/contentstack/contentstack-java</url>-->
100-
<!-- </repository>-->
101-
102-
<!-- Maven Release Repository-->
100+
<!-- </snapshotRepository>-->
101+
<!--Maven Release Repository-->
103102
<repository>
104103
<id>ossrh</id>
105104
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
@@ -127,7 +126,7 @@
127126
<groupId>io.github.cdimascio</groupId>
128127
<artifactId>dotenv-java</artifactId>
129128
<version>${dotenv-source.version}</version>
130-
<!-- <scope>runtime</scope>-->
129+
<!--<scope>runtime</scope>-->
131130
</dependency>
132131

133132
<dependency>
@@ -185,38 +184,9 @@
185184
</dependency>
186185
</dependencies>
187186

187+
<build>
188188

189-
<profiles>
190-
<profile>
191-
<id>release-sign-artifacts</id>
192-
<activation>
193-
<property>
194-
<name>performRelease</name>
195-
<value>true</value>
196-
</property>
197-
</activation>
198-
<build>
199-
<plugins>
200-
<plugin>
201-
<groupId>org.apache.maven.plugins</groupId>
202-
<artifactId>maven-gpg-plugin</artifactId>
203-
<version>${maven-gpg-plugin.version}</version>
204-
<executions>
205-
<execution>
206-
<id>sign-artifacts</id>
207-
<phase>verify</phase>
208-
<goals>
209-
<goal>sign</goal>
210-
</goals>
211-
</execution>
212-
</executions>
213-
</plugin>
214-
</plugins>
215-
</build>
216-
</profile>
217-
</profiles>
218189

219-
<build>
220190
<plugins>
221191
<!--
222192
# Run tests and generate .xml reports
@@ -241,7 +211,7 @@
241211
</executions>
242212
</plugin>
243213
<!--Generate overview.html file-->
244-
<!-- -overview "/Users/shaileshmishra/Documents/workspace/contentstack/javaspace/contentstack-java/src/main/overview.html" -bottom "<b>Copyright © 2012-2023 Contentstack </b><sup>TM</sup>" -->
214+
<!--overview "/Users/shaileshmishra/Documents/workspace/contentstack/workspace/GitHub/contentstack-java/src/main/overview.html" -bottom "<b>Copyright © 2012-2023 Contentstack </b><sup>TM</sup>" -->
245215
<plugin>
246216
<groupId>org.apache.maven.plugins</groupId>
247217
<artifactId>maven-javadoc-plugin</artifactId>
@@ -260,14 +230,24 @@
260230
<use>false</use>
261231
<source>1.8</source>
262232
<links>
263-
<link>http://docs.oracle.com/javase/7/docs/api/</link>
264-
<link>http://docs.oracle.com/javase/7/docs/api/</link>
233+
<link>https://docs.oracle.com/javase/7/docs/api/</link>
234+
<link>https://docs.oracle.com/javase/7/docs/api/</link>
265235
</links>
266236
<doclint>none</doclint>
267237
</configuration>
268238
</execution>
269239
</executions>
270240
</plugin>
241+
242+
<plugin>
243+
<groupId>org.apache.maven.plugins</groupId>
244+
<artifactId>maven-surefire-plugin</artifactId>
245+
<version>2.22.2</version>
246+
<configuration>
247+
<skipTests>true</skipTests>
248+
</configuration>
249+
</plugin>
250+
271251
<plugin>
272252
<groupId>org.apache.maven.plugins</groupId>
273253
<artifactId>maven-site-plugin</artifactId>
@@ -278,20 +258,20 @@
278258
<artifactId>maven-enforcer-plugin</artifactId>
279259
<version>3.0.0-M2</version>
280260
</plugin>
281-
<!-- <plugin>-->
282-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
283-
<!-- <artifactId>maven-gpg-plugin</artifactId>-->
284-
<!-- <version>1.6</version>-->
285-
<!-- <executions>-->
286-
<!-- <execution>-->
287-
<!-- <id>sign-artifacts</id>-->
288-
<!-- <phase>verify</phase>-->
289-
<!-- <goals>-->
290-
<!-- <goal>sign</goal>-->
291-
<!-- </goals>-->
292-
<!-- </execution>-->
293-
<!-- </executions>-->
294-
<!-- </plugin>-->
261+
<plugin>
262+
<groupId>org.apache.maven.plugins</groupId>
263+
<artifactId>maven-gpg-plugin</artifactId>
264+
<version>1.6</version>
265+
<executions>
266+
<execution>
267+
<id>sign-artifacts</id>
268+
<phase>verify</phase>
269+
<goals>
270+
<goal>sign</goal>
271+
</goals>
272+
</execution>
273+
</executions>
274+
</plugin>
295275
<plugin>
296276
<groupId>org.apache.maven.plugins</groupId>
297277
<artifactId>maven-compiler-plugin</artifactId>
@@ -312,9 +292,14 @@
312292
<artifactId>nexus-staging-maven-plugin</artifactId>
313293
<version>${nexus-staging-maven-plugin.version}</version>
314294
<extensions>true</extensions>
295+
<!-- <configuration>-->
296+
<!-- <serverId>github</serverId>-->
297+
<!-- <nexusUrl>https://maven.pkg.github.com/contentstack/contentstack-java</nexusUrl>-->
298+
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
299+
<!-- </configuration>-->
315300
<configuration>
316-
<serverId>github</serverId>
317-
<nexusUrl>https://maven.pkg.github.com/contentstack/contentstack-java</nexusUrl>
301+
<serverId>ossrh</serverId>
302+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
318303
<autoReleaseAfterClose>true</autoReleaseAfterClose>
319304
</configuration>
320305
</plugin>

0 commit comments

Comments
 (0)