File tree 3 files changed +66
-6
lines changed
3 files changed +66
-6
lines changed Original file line number Diff line number Diff line change 1
1
2
2
## CHANGELOG
3
3
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
+
4
14
## Version 1.4.0
5
15
###### Date: 26-July-2019
6
16
- [ Entry] - Added support for includeReferenceContentTypeUid support in Entry.
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.contentstack.sdk</groupId >
8
8
<artifactId >java</artifactId >
9
- <version >1.4.0 </version >
9
+ <version >1.4.2-SNAPSHOT </version >
10
10
<packaging >jar</packaging >
11
11
12
12
<name >contentstack-java</name >
43
43
<url >https://github.com/contentstack/contentstack-java/tree/master</url >
44
44
<connection >scm:git:git://github.com/contentstack/contentstack-java.git</connection >
45
45
<developerConnection >scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection >
46
- <tag >v1.2.1 </tag >
46
+ <tag >v1.4.0 </tag >
47
47
</scm >
48
48
49
49
<issueManagement >
121
121
<plugin >
122
122
<groupId >org.apache.maven.plugins</groupId >
123
123
<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 >
128
125
<executions >
129
126
<execution >
130
127
<id >attach-javadocs</id >
131
128
<goals >
132
129
<goal >jar</goal >
133
130
</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 >
134
138
</execution >
135
139
</executions >
136
140
</plugin >
137
141
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
+
138
160
<plugin >
139
161
<groupId >org.apache.maven.plugins</groupId >
140
162
<artifactId >maven-gpg-plugin</artifactId >
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments