Skip to content

Commit

Permalink
Pushing 8.2.0 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hguntupa-tibco committed May 2, 2023
1 parent 64edbe8 commit ce3f488
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ branches:
only:
- develop
- master
- develop-domainDesigner


env:
global:
- secure: "Dwb41Mdes13RFaB9Pf4fViLVt9U0NK8EvbzrD/GcWfHjKi1GpAgQ0WyUdQSKrxLViH2OL4BqQIQmOtugkW1rNQn/Gnnb4Hu4/rZ06+tLStcvmrm9+Pph++niqzCxZe206/VwDV393UVPWtVpFtbhDTaiJOf0dP+3BX7NAzqW+JU="
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@

<groupId>com.jaspersoft</groupId>
<artifactId>jrs-rest-java-client</artifactId>
<version>8.1.0</version>
<version>8.2.0</version>
<name>REST client for JasperReports server</name>
<url>http://github.com/Jaspersoft/jrs-rest-java-client</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jasperserver-dto.version>8.1.0</jasperserver-dto.version>
<jasperserver-dto.version>8.2.0</jasperserver-dto.version>
<powermock.version>2.0.9</powermock.version>
<jersey.version>2.36</jersey.version>
<jackson.version>2.13.3</jackson.version>
<jersey.version>2.39</jersey.version>
<jackson.version>2.13.5</jackson.version>
</properties>

<scm>
Expand Down Expand Up @@ -90,7 +90,7 @@
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>1.5.0</version>
<version>1.5.4</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -240,7 +240,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.0.0</version>
<configuration>
<skipTests>false</skipTests>
<testFailureIgnore>false</testFailureIgnore>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

public enum ReportOutputFormat {

PDF, HTML, XLS, XLSX, RTF, CSV, XML, DOCX, ODT,
PDF, HTML, XLS, XLSX, RTF, CSV, XML, DOCX, ODT, PPTX,
ODS, JRPRINT
}
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected WebTarget configClient() {
if (sessionId != null) {
rootTarget.register(new SessionOutputFilter(sessionId));
}
if (configuration.getLogHttp()) {
if (Boolean.TRUE.equals(configuration.getLogHttp())) {
rootTarget.property(LoggingFeature.LOGGING_FEATURE_LOGGER_LEVEL, "INFO");
rootTarget.register(initLoggingFilter());
}
Expand All @@ -131,7 +131,7 @@ private LoggingFeature initLoggingFilter() {
Logger logger = Logger.getLogger(this.getClass().getName());
SLF4JBridgeHandler.removeHandlersForRootLogger();
SLF4JBridgeHandler.install();
LoggingFeature.Verbosity verbosity = configuration.getLogHttpEntity() ? LoggingFeature.Verbosity.PAYLOAD_ANY : LoggingFeature.Verbosity.HEADERS_ONLY;
LoggingFeature.Verbosity verbosity = Boolean.TRUE.equals(configuration.getLogHttpEntity()) ? LoggingFeature.Verbosity.PAYLOAD_ANY : LoggingFeature.Verbosity.HEADERS_ONLY;
return new LoggingFeature(logger, verbosity);
}

Expand Down

0 comments on commit ce3f488

Please sign in to comment.