Skip to content

Commit

Permalink
Release v1.50.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Jan 23, 2025
1 parent 7c853ed commit e671235
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 19 deletions.
5 changes: 2 additions & 3 deletions para-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<version>3.11.2</version>
<executions>
<execution>
<id>javadocs</id>
Expand All @@ -75,9 +75,8 @@
</executions>
<configuration>
<release>17</release>
<stylesheetfile>../para-core/src/main/javadoc/stylesheet.css</stylesheetfile>
<stylesheetfile>para-core/src/main/javadoc/stylesheet.css</stylesheetfile>
<show>public</show>
<aggregate>true</aggregate>
<quiet>true</quiet>
<docfilessubdirs>true</docfilessubdirs>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
import org.apache.hc.client5.http.impl.classic.HttpClientBuilder;
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder;
import org.apache.hc.client5.http.io.HttpClientConnectionManager;
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactoryBuilder;
import org.apache.hc.client5.http.ssl.DefaultClientTlsStrategy;
import org.apache.hc.core5.http.ContentType;
import org.apache.hc.core5.http.HttpEntity;
import org.apache.hc.core5.http.HttpHeaders;
Expand Down Expand Up @@ -144,10 +144,8 @@ public ParaClient(String accessKey, String secretKey) {
sslFactory = SSLFactory.builder().withDefaultTrustMaterial().build();
}
HttpClientConnectionManager cm = PoolingHttpClientConnectionManagerBuilder.create().
setSSLSocketFactory(SSLConnectionSocketFactoryBuilder.create().
setHostnameVerifier(sslFactory.getHostnameVerifier()).
setSslContext(sslFactory.getSslContext()).
build()).build();
setTlsSocketStrategy(new DefaultClientTlsStrategy(sslFactory.getSslContext(),
sslFactory.getHostnameVerifier())).build();

int timeout = 30;
this.httpclient = HttpClientBuilder.create().
Expand Down
5 changes: 2 additions & 3 deletions para-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<version>3.11.2</version>
<executions>
<execution>
<id>javadocs</id>
Expand All @@ -357,9 +357,8 @@
</executions>
<configuration>
<release>17</release>
<stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile>
<stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
<show>public</show>
<aggregate>true</aggregate>
<quiet>true</quiet>
<docfilessubdirs>true</docfilessubdirs>
</configuration>
Expand Down
5 changes: 2 additions & 3 deletions para-jar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<version>3.11.2</version>
<executions>
<execution>
<id>javadocs</id>
Expand All @@ -72,10 +72,9 @@
</executions>
<configuration>
<release>17</release>
<stylesheetfile>../para-core/src/main/javadoc/stylesheet.css</stylesheetfile>
<stylesheetfile>para-core/src/main/javadoc/stylesheet.css</stylesheetfile>
<failOnError>false</failOnError>
<show>public</show>
<aggregate>true</aggregate>
<quiet>true</quiet>
<docfilessubdirs>true</docfilessubdirs>
</configuration>
Expand Down
5 changes: 2 additions & 3 deletions para-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<version>3.11.2</version>
<executions>
<execution>
<id>javadocs</id>
Expand All @@ -464,9 +464,8 @@
</executions>
<configuration>
<release>17</release>
<stylesheetfile>../para-core/src/main/javadoc/stylesheet.css</stylesheetfile>
<stylesheetfile>para-core/src/main/javadoc/stylesheet.css</stylesheetfile>
<show>public</show>
<aggregate>true</aggregate>
<quiet>true</quiet>
<docfilessubdirs>true</docfilessubdirs>
</configuration>
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -254,7 +254,6 @@
<release>17</release>
<stylesheetfile>para-core/src/main/javadoc/stylesheet.css</stylesheetfile>
<show>public</show>
<aggregate>true</aggregate>
<quiet>true</quiet>
<failOnWarnings>false</failOnWarnings>
<docfilessubdirs>true</docfilessubdirs>
Expand Down

0 comments on commit e671235

Please sign in to comment.