Skip to content

Commit 2d240fb

Browse files
shaileshmishrashaileshmishra
authored andcommitted
Bug fix: Error details information included
New Features: • None
1 parent 03fcf76 commit 2d240fb

File tree

2 files changed

+35
-24
lines changed

2 files changed

+35
-24
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11

22
## CHANGELOG
33

4+
5+
## Version 1.5.5
6+
###### Date: 22-Jan-2021
7+
Bug fix: Error details are not available
8+
New Features:
9+
• None
10+
411
------------------------------------------------
512

613
## Version 1.5.4

pom.xml

Lines changed: 28 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.contentstack.sdk</groupId>
88
<artifactId>java</artifactId>
9-
<version>1.5.4</version>
9+
<version>1.5.5</version>
1010
<packaging>jar</packaging>
11-
1211
<name>contentstack-java</name>
1312
<description>Java SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach
1413
</description>
@@ -96,12 +95,19 @@
9695
<artifactId>json</artifactId>
9796
<version>20190722</version>
9897
</dependency>
99-
<!-- <dependency>-->
100-
<!-- <groupId>com.contentstack.sdk</groupId>-->
101-
<!-- <artifactId>java</artifactId>-->
102-
<!-- <version>1.5.3</version>-->
103-
<!-- <scope>test</scope>-->
104-
<!-- </dependency>-->
98+
99+
<dependency>
100+
<groupId>org.apache.logging.log4j</groupId>
101+
<artifactId>log4j-api</artifactId>
102+
<version>2.5</version>
103+
</dependency>
104+
105+
<dependency>
106+
<groupId>org.apache.logging.log4j</groupId>
107+
<artifactId>log4j-core</artifactId>
108+
<version>2.13.2</version>
109+
</dependency>
110+
105111
</dependencies>
106112

107113

@@ -111,10 +117,8 @@
111117
<!--
112118
# Run tests and generate .xml reports
113119
mvn test
114-
115120
# Convert .xml reports into .html report, but without the CSS or images
116121
mvn surefire-report:report-only
117-
118122
# Put the CSS and images where they need to be without the rest of the
119123
# time-consuming stuff
120124
mvn surefire-report:report site -DgenerateReports=false
@@ -165,7 +169,7 @@
165169
</goals>
166170
<configuration>
167171
<additionalOptions>-Xdoclint:none</additionalOptions>
168-
<!-- <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>-->
172+
<!-- <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>-->
169173
<use>false</use>
170174
<use>false</use>
171175
<source>1.8</source>
@@ -187,18 +191,18 @@
187191
<groupId>org.apache.maven.plugins</groupId>
188192
<artifactId>maven-site-plugin</artifactId>
189193
<version>3.3</version>
190-
<!-- <configuration>-->
191-
<!-- <reportPlugins>-->
192-
<!-- <plugin>-->
193-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
194-
<!-- <artifactId>maven-javadoc-plugin</artifactId>-->
195-
<!-- <configuration>-->
196-
<!-- &lt;!&ndash;suppress UnresolvedMavenProperty &ndash;&gt;-->
197-
<!-- <additionalparam>${javadoc.opts}</additionalparam>-->
198-
<!-- </configuration>-->
199-
<!-- </plugin>-->
200-
<!-- </reportPlugins>-->
201-
<!-- </configuration>-->
194+
<!-- <configuration>-->
195+
<!-- <reportPlugins>-->
196+
<!-- <plugin>-->
197+
<!-- <groupId>org.apache.maven.plugins</groupId>-->
198+
<!-- <artifactId>maven-javadoc-plugin</artifactId>-->
199+
<!-- <configuration>-->
200+
<!-- &lt;!&ndash;suppress UnresolvedMavenProperty &ndash;&gt;-->
201+
<!-- <additionalparam>${javadoc.opts}</additionalparam>-->
202+
<!-- </configuration>-->
203+
<!-- </plugin>-->
204+
<!-- </reportPlugins>-->
205+
<!-- </configuration>-->
202206
</plugin>
203207

204208
<!--
@@ -294,4 +298,4 @@
294298
</plugins>
295299
</build>
296300

297-
</project>
301+
</project>

0 commit comments

Comments
 (0)