Skip to content

Commit ce3f488

Browse files
Pushing 8.2.0 changes
1 parent 64edbe8 commit ce3f488

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ branches:
1212
only:
1313
- develop
1414
- master
15-
- develop-domainDesigner
16-
15+
1716
env:
1817
global:
1918
- secure: "Dwb41Mdes13RFaB9Pf4fViLVt9U0NK8EvbzrD/GcWfHjKi1GpAgQ0WyUdQSKrxLViH2OL4BqQIQmOtugkW1rNQn/Gnnb4Hu4/rZ06+tLStcvmrm9+Pph++niqzCxZe206/VwDV393UVPWtVpFtbhDTaiJOf0dP+3BX7NAzqW+JU="

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77

88
<groupId>com.jaspersoft</groupId>
99
<artifactId>jrs-rest-java-client</artifactId>
10-
<version>8.1.0</version>
10+
<version>8.2.0</version>
1111
<name>REST client for JasperReports server</name>
1212
<url>http://github.com/Jaspersoft/jrs-rest-java-client</url>
1313

1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<jasperserver-dto.version>8.1.0</jasperserver-dto.version>
16+
<jasperserver-dto.version>8.2.0</jasperserver-dto.version>
1717
<powermock.version>2.0.9</powermock.version>
18-
<jersey.version>2.36</jersey.version>
19-
<jackson.version>2.13.3</jackson.version>
18+
<jersey.version>2.39</jersey.version>
19+
<jackson.version>2.13.5</jackson.version>
2020
</properties>
2121

2222
<scm>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>org.codehaus.jettison</groupId>
9292
<artifactId>jettison</artifactId>
93-
<version>1.5.0</version>
93+
<version>1.5.4</version>
9494
</dependency>
9595

9696
<dependency>
@@ -240,7 +240,7 @@
240240
<plugin>
241241
<groupId>org.apache.maven.plugins</groupId>
242242
<artifactId>maven-surefire-plugin</artifactId>
243-
<version>2.22.2</version>
243+
<version>3.0.0</version>
244244
<configuration>
245245
<skipTests>false</skipTests>
246246
<testFailureIgnore>false</testFailureIgnore>

src/main/java/com/jaspersoft/jasperserver/jaxrs/client/apiadapters/reporting/util/ReportOutputFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323

2424
public enum ReportOutputFormat {
2525

26-
PDF, HTML, XLS, XLSX, RTF, CSV, XML, DOCX, ODT,
26+
PDF, HTML, XLS, XLSX, RTF, CSV, XML, DOCX, ODT, PPTX,
2727
ODS, JRPRINT
2828
}

src/main/java/com/jaspersoft/jasperserver/jaxrs/client/core/SessionStorage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ protected WebTarget configClient() {
120120
if (sessionId != null) {
121121
rootTarget.register(new SessionOutputFilter(sessionId));
122122
}
123-
if (configuration.getLogHttp()) {
123+
if (Boolean.TRUE.equals(configuration.getLogHttp())) {
124124
rootTarget.property(LoggingFeature.LOGGING_FEATURE_LOGGER_LEVEL, "INFO");
125125
rootTarget.register(initLoggingFilter());
126126
}
@@ -131,7 +131,7 @@ private LoggingFeature initLoggingFilter() {
131131
Logger logger = Logger.getLogger(this.getClass().getName());
132132
SLF4JBridgeHandler.removeHandlersForRootLogger();
133133
SLF4JBridgeHandler.install();
134-
LoggingFeature.Verbosity verbosity = configuration.getLogHttpEntity() ? LoggingFeature.Verbosity.PAYLOAD_ANY : LoggingFeature.Verbosity.HEADERS_ONLY;
134+
LoggingFeature.Verbosity verbosity = Boolean.TRUE.equals(configuration.getLogHttpEntity()) ? LoggingFeature.Verbosity.PAYLOAD_ANY : LoggingFeature.Verbosity.HEADERS_ONLY;
135135
return new LoggingFeature(logger, verbosity);
136136
}
137137

0 commit comments

Comments
 (0)