Skip to content

Commit f22459a

Browse files
[TASKSCLOUD-608] - Deployed new 21.10 version.
1 parent 61b5da5 commit f22459a

File tree

5 files changed

+333
-5
lines changed

5 files changed

+333
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Add this dependency to your project's POM:
7171
<dependency>
7272
<groupId>com.aspose</groupId>
7373
<artifactId>aspose-tasks-cloud</artifactId>
74-
<version>21.8.0</version>
74+
<version>21.10.0</version>
7575
</dependency>
7676
</dependencies>
7777
```

aspose-tasks-cloud-21.10.0.pom

Lines changed: 305 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,305 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.aspose</groupId>
4+
<artifactId>aspose-tasks-cloud</artifactId>
5+
<packaging>jar</packaging>
6+
<name>aspose-tasks-cloud</name>
7+
<version>21.10.0</version>
8+
<url>https://www.aspose.cloud/</url>
9+
<description>Aspose Tasks Cloud Java SDK</description>
10+
<scm>
11+
<url>https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-java</url>
12+
<tag>HEAD</tag>
13+
</scm>
14+
15+
<distributionManagement>
16+
<repository>
17+
<id>aspose</id>
18+
<url>http://repository.aspose.cloud/repo/</url>
19+
</repository>
20+
</distributionManagement>
21+
22+
<licenses>
23+
<license>
24+
<name>MIT License</name>
25+
<url>http://www.opensource.org/licenses/mit-license.php</url>
26+
<distribution>repo</distribution>
27+
</license>
28+
</licenses>
29+
30+
<developers>
31+
<developer>
32+
<name>Ivan Andreychikov</name>
33+
<email>[email protected]</email>
34+
<organization>Aspose</organization>
35+
<organizationUrl>https://www.aspose.cloud/</organizationUrl>
36+
</developer>
37+
</developers>
38+
39+
<build>
40+
<pluginManagement>
41+
<plugins>
42+
<plugin>
43+
<artifactId>maven-source-plugin</artifactId>
44+
<version>2.1.2</version>
45+
<executions>
46+
<execution>
47+
<phase>deploy</phase>
48+
<goals>
49+
<goal>jar</goal>
50+
</goals>
51+
</execution>
52+
</executions>
53+
</plugin>
54+
</plugins>
55+
</pluginManagement>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-enforcer-plugin</artifactId>
60+
<version>3.0.0-M1</version>
61+
<executions>
62+
<execution>
63+
<id>enforce-maven</id>
64+
<goals>
65+
<goal>enforce</goal>
66+
</goals>
67+
<configuration>
68+
<rules>
69+
<requireMavenVersion>
70+
<version>2.2.0</version>
71+
</requireMavenVersion>
72+
</rules>
73+
</configuration>
74+
</execution>
75+
</executions>
76+
</plugin>
77+
<plugin>
78+
<groupId>org.apache.maven.plugins</groupId>
79+
<artifactId>maven-surefire-plugin</artifactId>
80+
<version>2.12</version>
81+
<configuration>
82+
<systemProperties>
83+
<property>
84+
<name>loggerPath</name>
85+
<value>conf/log4j.properties</value>
86+
</property>
87+
</systemProperties>
88+
<argLine>-Xms512m -Xmx1500m</argLine>
89+
<parallel>methods</parallel>
90+
<forkMode>pertest</forkMode>
91+
</configuration>
92+
</plugin>
93+
<plugin>
94+
<artifactId>maven-dependency-plugin</artifactId>
95+
<executions>
96+
<execution>
97+
<phase>package</phase>
98+
<goals>
99+
<goal>copy-dependencies</goal>
100+
</goals>
101+
<configuration>
102+
<outputDirectory>/lib</outputDirectory>
103+
</configuration>
104+
</execution>
105+
</executions>
106+
</plugin>
107+
108+
<!-- attach test jar -->
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-jar-plugin</artifactId>
112+
<version>2.2</version>
113+
<executions>
114+
<execution>
115+
<goals>
116+
<goal>jar</goal>
117+
<goal>test-jar</goal>
118+
</goals>
119+
</execution>
120+
</executions>
121+
<configuration>
122+
</configuration>
123+
</plugin>
124+
125+
<plugin>
126+
<groupId>org.codehaus.mojo</groupId>
127+
<artifactId>build-helper-maven-plugin</artifactId>
128+
<version>1.10</version>
129+
<executions>
130+
<execution>
131+
<id>add_sources</id>
132+
<phase>generate-sources</phase>
133+
<goals>
134+
<goal>add-source</goal>
135+
</goals>
136+
<configuration>
137+
<sources>
138+
<source>
139+
src/main/java</source>
140+
</sources>
141+
</configuration>
142+
</execution>
143+
<execution>
144+
<id>add_test_sources</id>
145+
<phase>generate-test-sources</phase>
146+
<goals>
147+
<goal>add-test-source</goal>
148+
</goals>
149+
<configuration>
150+
<sources>
151+
<source>
152+
src/test/java</source>
153+
</sources>
154+
</configuration>
155+
</execution>
156+
</executions>
157+
</plugin>
158+
<plugin>
159+
<groupId>org.apache.maven.plugins</groupId>
160+
<artifactId>maven-javadoc-plugin</artifactId>
161+
<version>2.10.4</version>
162+
<executions>
163+
<execution>
164+
<id>attach-javadocs</id>
165+
<goals>
166+
<goal>jar</goal>
167+
</goals>
168+
</execution>
169+
</executions>
170+
</plugin>
171+
<plugin>
172+
<groupId>org.apache.maven.plugins</groupId>
173+
<artifactId>maven-source-plugin</artifactId>
174+
<version>2.2.1</version>
175+
<executions>
176+
<execution>
177+
<id>attach-sources</id>
178+
<goals>
179+
<goal>jar-no-fork</goal>
180+
</goals>
181+
</execution>
182+
</executions>
183+
</plugin>
184+
<plugin>
185+
<version>3.8.0</version>
186+
<groupId>org.apache.maven.plugins</groupId>
187+
<artifactId>maven-compiler-plugin</artifactId>
188+
<configuration>
189+
<source>8</source>
190+
<target>8</target>
191+
</configuration>
192+
</plugin>
193+
<plugin>
194+
<groupId>org.apache.maven.plugins</groupId>
195+
<artifactId>maven-checkstyle-plugin</artifactId>
196+
<version>3.0.0</version>
197+
<executions>
198+
<execution>
199+
<id>validate</id>
200+
<phase>validate</phase>
201+
<configuration>
202+
<configLocation>checkstyle.xml</configLocation>
203+
<encoding>UTF-8</encoding>
204+
<consoleOutput>true</consoleOutput>
205+
<failsOnError>true</failsOnError>
206+
<!--<linkXRef>false</linkXRef>-->
207+
</configuration>
208+
<goals>
209+
<goal>check</goal>
210+
</goals>
211+
</execution>
212+
</executions>
213+
</plugin>
214+
</plugins>
215+
</build>
216+
<repositories>
217+
<repository>
218+
<id>AsposeJavaAPI</id>
219+
<name>Aspose Java API</name>
220+
<url>http://repository.aspose.cloud/repo</url>
221+
</repository>
222+
</repositories>
223+
224+
<profiles>
225+
<profile>
226+
<id>sign-artifacts</id>
227+
<build>
228+
<plugins>
229+
<!--<plugin>
230+
<groupId>org.apache.maven.plugins</groupId>
231+
<artifactId>maven-gpg-plugin</artifactId>
232+
<version>1.5</version>
233+
<executions>
234+
<execution>
235+
<id>sign-artifacts</id>
236+
<phase>verify</phase>
237+
<goals>
238+
<goal>sign</goal>
239+
</goals>
240+
</execution>
241+
</executions>
242+
</plugin>-->
243+
</plugins>
244+
</build>
245+
</profile>
246+
</profiles>
247+
248+
<dependencies>
249+
<dependency>
250+
<groupId>io.swagger</groupId>
251+
<artifactId>swagger-annotations</artifactId>
252+
<version>${swagger-core-version}</version>
253+
</dependency>
254+
<dependency>
255+
<groupId>com.squareup.okhttp</groupId>
256+
<artifactId>okhttp</artifactId>
257+
<version>${okhttp-version}</version>
258+
</dependency>
259+
<dependency>
260+
<groupId>com.squareup.okhttp</groupId>
261+
<artifactId>logging-interceptor</artifactId>
262+
<version>${okhttp-version}</version>
263+
</dependency>
264+
<dependency>
265+
<groupId>com.google.code.gson</groupId>
266+
<artifactId>gson</artifactId>
267+
<version>${gson-version}</version>
268+
</dependency>
269+
<dependency>
270+
<groupId>io.gsonfire</groupId>
271+
<artifactId>gson-fire</artifactId>
272+
<version>${gson-fire-version}</version>
273+
</dependency>
274+
<dependency>
275+
<groupId>javax.mail</groupId>
276+
<artifactId>mail</artifactId>
277+
<version>1.4.7</version>
278+
</dependency>
279+
<dependency>
280+
<groupId>org.threeten</groupId>
281+
<artifactId>threetenbp</artifactId>
282+
<version>${threetenbp-version}</version>
283+
</dependency>
284+
<!-- test dependencies -->
285+
<dependency>
286+
<groupId>junit</groupId>
287+
<artifactId>junit</artifactId>
288+
<version>${junit-version}</version>
289+
<scope>test</scope>
290+
</dependency>
291+
</dependencies>
292+
<properties>
293+
<java.version>1.7</java.version>
294+
<maven.compiler.source>${java.version}</maven.compiler.source>
295+
<maven.compiler.target>${java.version}</maven.compiler.target>
296+
<gson-fire-version>1.8.0</gson-fire-version>
297+
<swagger-core-version>1.5.18</swagger-core-version>
298+
<okhttp-version>2.7.5</okhttp-version>
299+
<gson-version>2.8.1</gson-version>
300+
<threetenbp-version>1.3.5</threetenbp-version>
301+
<maven-plugin-version>1.0.0</maven-plugin-version>
302+
<junit-version>4.12</junit-version>
303+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
304+
</properties>
305+
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>aspose-tasks-cloud</artifactId>
55
<packaging>jar</packaging>
66
<name>aspose-tasks-cloud</name>
7-
<version>21.8.0</version>
7+
<version>21.10.0</version>
88
<url>https://www.aspose.cloud/</url>
99
<description>Aspose Tasks Cloud Java SDK</description>
1010
<scm>

src/main/java/com/aspose/tasks/cloud/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public class ApiClient {
6969
private String apiVersion = "v3.0";
7070
private String baseUrl = "https://api.aspose.cloud";
7171
private String basePath = baseUrl + "/" + apiVersion;
72-
private String clientVersion = "21.8.0";
72+
private String clientVersion = "21.10.0";
7373
private boolean debugging = false;
7474
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
7575
private String tempFolderPath = null;

src/main/java/com/aspose/tasks/cloud/model/ExtendedAttribute.java

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ public class ExtendedAttribute {
7575
@SerializedName("TextValue")
7676
private String textValue = null;
7777

78+
@SerializedName("IsErrorValue")
79+
private Boolean isErrorValue = null;
80+
7881
public ExtendedAttribute fieldId(String fieldId) {
7982
this.fieldId = fieldId;
8083
return this;
@@ -237,6 +240,24 @@ public void setTextValue(String textValue) {
237240
this.textValue = textValue;
238241
}
239242

243+
public ExtendedAttribute isErrorValue(Boolean isErrorValue) {
244+
this.isErrorValue = isErrorValue;
245+
return this;
246+
}
247+
248+
/**
249+
* Gets whether calculation of extended attribute&#39;s value resulted in an error.
250+
* @return isErrorValue
251+
**/
252+
@ApiModelProperty(required = true, value = "Gets whether calculation of extended attribute's value resulted in an error. ")
253+
public Boolean isIsErrorValue() {
254+
return isErrorValue;
255+
}
256+
257+
public void setIsErrorValue(Boolean isErrorValue) {
258+
this.isErrorValue = isErrorValue;
259+
}
260+
240261

241262
@Override
242263
public boolean equals(java.lang.Object o) {
@@ -255,12 +276,13 @@ public boolean equals(java.lang.Object o) {
255276
Objects.equals(this.numericValue, extendedAttribute.numericValue) &&
256277
Objects.equals(this.dateValue, extendedAttribute.dateValue) &&
257278
Objects.equals(this.flagValue, extendedAttribute.flagValue) &&
258-
Objects.equals(this.textValue, extendedAttribute.textValue);
279+
Objects.equals(this.textValue, extendedAttribute.textValue) &&
280+
Objects.equals(this.isErrorValue, extendedAttribute.isErrorValue);
259281
}
260282

261283
@Override
262284
public int hashCode() {
263-
return Objects.hash(fieldId, attributeType, valueGuid, lookupValueId, durationValue, numericValue, dateValue, flagValue, textValue);
285+
return Objects.hash(fieldId, attributeType, valueGuid, lookupValueId, durationValue, numericValue, dateValue, flagValue, textValue, isErrorValue);
264286
}
265287

266288

@@ -278,6 +300,7 @@ public String toString() {
278300
sb.append(" dateValue: ").append(toIndentedString(dateValue)).append("\n");
279301
sb.append(" flagValue: ").append(toIndentedString(flagValue)).append("\n");
280302
sb.append(" textValue: ").append(toIndentedString(textValue)).append("\n");
303+
sb.append(" isErrorValue: ").append(toIndentedString(isErrorValue)).append("\n");
281304
sb.append("}");
282305
return sb.toString();
283306
}

0 commit comments

Comments
 (0)