Skip to content

Commit

Permalink
QACI-406 Released grizzly 2.4.4.payara-p4
Browse files Browse the repository at this point in the history
- fixed ALPN support
- fixed one of two failing tests (trailers)
- better compatibility and logging
  • Loading branch information
dmatej committed Sep 22, 2020
1 parent b2b337e commit b13291c
Show file tree
Hide file tree
Showing 486 changed files with 5,425 additions and 168 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8564925a03d239bb960b27b3ae544052
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c79388bf67029750c2c4e9d1a6443f2b94a0b55b
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
89c15405dccfe50dc7be5d2eb806d868
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7a4aeb70dada1c322722fcbd0ecdd8ac913845a9
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f28f9fde91ce874fc0efc494a6df3514
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
61943837c7a659ee7239c71eb99419e44e155a92
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2017 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->

<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">
<parent>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-project</artifactId>
<version>2.4.4.payara-p4</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connection-pool</artifactId>
<packaging>bundle</packaging>
<version>2.4.4.payara-p4</version>
<name>connection-pool</name>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>always</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix-version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>
org.glassfish.grizzly*;version=${project.version},
*,
</Import-Package>
<Export-Package>
org.glassfish.grizzly.connectionpool.*;version=${project.version},
</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<linkXRef>false</linkXRef>
</configuration>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-framework</artifactId>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2a9bcf73384f3163fb65e2ad4f462c3f
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e20d35a1db545af0cfd64e0c64e63a7903ce5147
5 changes: 3 additions & 2 deletions org/glassfish/grizzly/connection-pool/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>org.glassfish.grizzly</groupId>
<artifactId>connection-pool</artifactId>
<versioning>
<release>2.4.4.payara-p3</release>
<release>2.4.4.payara-p4</release>
<versions>
<version>2.3.18-SNAPSHOT</version>
<version>2.4.3.payara-p1</version>
Expand All @@ -23,7 +23,8 @@
<version>2.4.4.payara-p1</version>
<version>2.4.4.payara-p2</version>
<version>2.4.4.payara-p3</version>
<version>2.4.4.payara-p4</version>
</versions>
<lastUpdated>20200707114835</lastUpdated>
<lastUpdated>20200922142901</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
35625c08144cd82461cb2b9444611164
2cf34311185da4dd10858f3b1460efbf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2d981bcb2ef7af8136eafd58b7edf995761dd62d
d399cc36e8bce35596adbb14f48e682b9a3af187
Original file line number Diff line number Diff line change
@@ -0,0 +1,224 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2007, 2017 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->

<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">

<parent>
<groupId>net.java</groupId>
<artifactId>jvnet-parent</artifactId>
<version>3</version>
<relativePath />
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-bom</artifactId>
<packaging>pom</packaging>
<name>grizzly-bom</name>
<version>2.4.4.payara-p4</version>

<description>Grizzly Bill of Materials (BOM)</description>

<build>
<pluginManagement>
<plugins>
<plugin>
<inherited>true</inherited>
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<version>1.40</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.13</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.version}</version>
</plugin>
-->
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.glassfish.copyright</groupId>
<artifactId>glassfish-copyright-maven-plugin</artifactId>
<version>1.39</version>
<configuration>
<scm>git</scm>
<scmOnly>true</scmOnly>
<warn>false</warn>
</configuration>
</plugin>
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-framework</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-compression</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-servlet</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-portunif</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-ajp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-websockets</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-comet</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-server-multipart</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-server-jaxws</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-servlet-extras</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>tls-sni</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly.osgi</groupId>
<artifactId>grizzly-httpservice</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JMX monitoring modules -->
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-framework-monitoring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-monitoring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-server-monitoring</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Bundles -->
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-server-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-all</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-servlet-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-websockets-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-comet-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly.osgi</groupId>
<artifactId>grizzly-httpservice-bundle</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
318c976d153bd6ad587d9e86477f05e2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0eae4412b89f9c5c546aec0dfa0f3a64c02be008
5 changes: 3 additions & 2 deletions org/glassfish/grizzly/grizzly-bom/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-bom</artifactId>
<versioning>
<release>2.4.4.payara-p3</release>
<release>2.4.4.payara-p4</release>
<versions>
<version>2.3.18-SNAPSHOT</version>
<version>2.4.3.payara-p1</version>
Expand All @@ -23,7 +23,8 @@
<version>2.4.4.payara-p1</version>
<version>2.4.4.payara-p2</version>
<version>2.4.4.payara-p3</version>
<version>2.4.4.payara-p4</version>
</versions>
<lastUpdated>20200707114744</lastUpdated>
<lastUpdated>20200922142831</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion org/glassfish/grizzly/grizzly-bom/maven-metadata.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e8d84833e05afd03c1d781de42aacad5
50657758e485f3c0a1ab5f3247f3cda4
Loading

0 comments on commit b13291c

Please sign in to comment.