Skip to content

Commit d80c81d

Browse files
Merge pull request #8 from contentstack/development
Development
2 parents 01e9b96 + b6dc497 commit d80c81d

File tree

3 files changed

+66
-6
lines changed

3 files changed

+66
-6
lines changed

CHANGELOG.md

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

22
## CHANGELOG
33

4+
------------------------------------------------
5+
6+
## Version 1.4.1
7+
###### Date: 21-August-2019
8+
- [Query] - Added support for whereIn(String key) and whereNotIn(String key) methods
9+
- [CSAppConstants] - Removed google internet connection check from CSAppConstants
10+
11+
------------------------------------------------
12+
13+
414
## Version 1.4.0
515
###### Date: 26-July-2019
616
- [Entry] - Added support for includeReferenceContentTypeUid support in Entry.

pom.xml

+28-6
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.4.0</version>
9+
<version>1.4.2-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>contentstack-java</name>
@@ -43,7 +43,7 @@
4343
<url>https://github.com/contentstack/contentstack-java/tree/master</url>
4444
<connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection>
4545
<developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection>
46-
<tag>v1.2.1</tag>
46+
<tag>v1.4.0</tag>
4747
</scm>
4848

4949
<issueManagement>
@@ -121,20 +121,42 @@
121121
<plugin>
122122
<groupId>org.apache.maven.plugins</groupId>
123123
<artifactId>maven-javadoc-plugin</artifactId>
124-
<version>2.9.1</version>
125-
<configuration>
126-
<additionalparam>-Xdoclint:none</additionalparam>
127-
</configuration>
124+
<version>3.1.1</version>
128125
<executions>
129126
<execution>
130127
<id>attach-javadocs</id>
131128
<goals>
132129
<goal>jar</goal>
133130
</goals>
131+
<configuration>
132+
<use>false</use>
133+
<use>false</use>
134+
<source>1.8</source>
135+
<links><link>http://docs.oracle.com/javase/7/docs/api/</link> <link>http://docs.oracle.com/javase/7/docs/api/</link></links>
136+
<doclint>none</doclint>
137+
</configuration>
134138
</execution>
135139
</executions>
136140
</plugin>
137141

142+
<plugin>
143+
<groupId>org.apache.maven.plugins</groupId>
144+
<artifactId>maven-site-plugin</artifactId>
145+
<version>3.3</version>
146+
<configuration>
147+
<reportPlugins>
148+
<plugin>
149+
<groupId>org.apache.maven.plugins</groupId>
150+
<artifactId>maven-javadoc-plugin</artifactId>
151+
<configuration>
152+
<!--suppress UnresolvedMavenProperty -->
153+
<additionalparam>${javadoc.opts}</additionalparam>
154+
</configuration>
155+
</plugin>
156+
</reportPlugins>
157+
</configuration>
158+
</plugin>
159+
138160
<plugin>
139161
<groupId>org.apache.maven.plugins</groupId>
140162
<artifactId>maven-gpg-plugin</artifactId>

profiles.xml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<profilesXml xmlns="http://maven.apache.org/PROFILES/1.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/PROFILES/1.0.0 http://maven.apache.org/xsd/profiles-1.0.0.xsd">
5+
<profiles>
6+
<profile>
7+
<id>77b9c8fd28426a</id>
8+
<!--<id>B16B07F68332BB77</id>-->
9+
<activation>
10+
<property>
11+
<name>performRelease</name>
12+
<value>true</value>
13+
</property>
14+
</activation>
15+
</profile>
16+
17+
<profile>
18+
<id>java8-doclint-disabled</id>
19+
<activation>
20+
<jdk>[1.8,)</jdk>
21+
</activation>
22+
<properties>
23+
<javadoc.opts>-Xdoclint:none</javadoc.opts>
24+
</properties>
25+
</profile>
26+
27+
</profiles>
28+
</profilesXml>

0 commit comments

Comments
 (0)