Skip to content

Commit dd1b47f

Browse files
Merge pull request #4 from contentstack/development
URL encoding bug fix
2 parents a6092d4 + c1620a6 commit dd1b47f

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11

22
## CHANGELOG
3-
3+
4+
5+
## Version 1.3.1
6+
### Date: May-02-2019
7+
Change: include reference bug fixed
8+
added testcase report for v1.3.1
9+
10+
11+
------------------------------------------------
12+
13+
414
## Version 1.3.0
515
### Date: Apr-12-2019
616
Change: Added support of below methods in SDK

pom.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Written manually.
2-
version=1.2.0
2+
version=1.3.1
33
groupId=com.contentstack.sdk
44
artifactId=java

pom.xml

+13-10
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.contentstack.sdk</groupId>
88
<artifactId>java</artifactId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.3.1-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>contentstack-java</name>
@@ -116,6 +116,9 @@
116116
<groupId>org.apache.maven.plugins</groupId>
117117
<artifactId>maven-javadoc-plugin</artifactId>
118118
<version>2.9.1</version>
119+
<configuration>
120+
<additionalparam>-Xdoclint:none</additionalparam>
121+
</configuration>
119122
<executions>
120123
<execution>
121124
<id>attach-javadocs</id>
@@ -152,15 +155,15 @@
152155
</plugin>
153156

154157
<plugin>
155-
<groupId>org.sonatype.plugins</groupId>
156-
<artifactId>nexus-staging-maven-plugin</artifactId>
157-
<version>1.6.7</version>
158-
<extensions>true</extensions>
159-
<configuration>
160-
<serverId>ossrh</serverId>
161-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
162-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
163-
</configuration>
158+
<groupId>org.sonatype.plugins</groupId>
159+
<artifactId>nexus-staging-maven-plugin</artifactId>
160+
<version>1.6.7</version>
161+
<extensions>true</extensions>
162+
<configuration>
163+
<serverId>ossrh</serverId>
164+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
165+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
166+
</configuration>
164167
</plugin>
165168

166169
<plugin>

0 commit comments

Comments
 (0)