Skip to content

Commit

Permalink
Merge pull request #8 from contentstack/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
ishaileshmishra authored Aug 26, 2019
2 parents 01e9b96 + b6dc497 commit d80c81d
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@

## CHANGELOG

------------------------------------------------

## Version 1.4.1
###### Date: 21-August-2019
- [Query] - Added support for whereIn(String key) and whereNotIn(String key) methods
- [CSAppConstants] - Removed google internet connection check from CSAppConstants

------------------------------------------------


## Version 1.4.0
###### Date: 26-July-2019
- [Entry] - Added support for includeReferenceContentTypeUid support in Entry.
Expand Down
34 changes: 28 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.contentstack.sdk</groupId>
<artifactId>java</artifactId>
<version>1.4.0</version>
<version>1.4.2-SNAPSHOT</version>
<packaging>jar</packaging>

<name>contentstack-java</name>
Expand Down Expand Up @@ -43,7 +43,7 @@
<url>https://github.com/contentstack/contentstack-java/tree/master</url>
<connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection>
<developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection>
<tag>v1.2.1</tag>
<tag>v1.4.0</tag>
</scm>

<issueManagement>
Expand Down Expand Up @@ -121,20 +121,42 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<use>false</use>
<use>false</use>
<source>1.8</source>
<links><link>http://docs.oracle.com/javase/7/docs/api/</link> <link>http://docs.oracle.com/javase/7/docs/api/</link></links>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!--suppress UnresolvedMavenProperty -->
<additionalparam>${javadoc.opts}</additionalparam>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down
28 changes: 28 additions & 0 deletions profiles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<profilesXml xmlns="http://maven.apache.org/PROFILES/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/PROFILES/1.0.0 http://maven.apache.org/xsd/profiles-1.0.0.xsd">
<profiles>
<profile>
<id>77b9c8fd28426a</id>
<!--<id>B16B07F68332BB77</id>-->
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
</profile>

<profile>
<id>java8-doclint-disabled</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>

</profiles>
</profilesXml>

0 comments on commit d80c81d

Please sign in to comment.