adress Markus review comments

- fix pom file indentation
- use latest versions of junit-jupiter jars
- use jdk11 version (glassfish 6.1)
- remove arquillian.xml for now
diff --git a/jaxrs-tck/pom.xml b/jaxrs-tck/pom.xml
index a173628..f3d3236 100644
--- a/jaxrs-tck/pom.xml
+++ b/jaxrs-tck/pom.xml
@@ -17,7 +17,8 @@
 
 -->
 
-<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/xsd/maven-4.0.0.xsd">
+<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/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>jakarta.ws.rs</groupId>
@@ -29,8 +30,9 @@
     <url>https://github.com/eclipse-ee4j/jaxrs-api</url>
 
     <properties>
-        <maven.compiler.source>1.8</maven.compiler.source>
-        <maven.compiler.target>1.8</maven.compiler.target>
+        <maven.compiler.source>11</maven.compiler.source>
+        <maven.compiler.target>11</maven.compiler.target>
+        <junit.jupiter.version>5.7.2</junit.jupiter.version>
     </properties>
 
     <organization>
@@ -76,42 +78,22 @@
         <connection>scm:git:https://github.com/eclipse-ee4j/jaxrs-api</connection>
         <url>https://github.com/eclipse-ee4j/jaxrs-api</url>
         <tag>HEAD</tag>
-    </scm>  
+    </scm>
 
-    <dependencyManagement>
-        <dependencies>
-        <dependency>
-            <groupId>org.junit</groupId>
-            <artifactId>junit-bom</artifactId>
-            <version>5.7.0</version>
-            <type>pom</type>
-            <scope>import</scope>
-        </dependency>
-        <!--dependency>
-                <groupId>org.jboss.arquillian</groupId>
-                <artifactId>arquillian-bom</artifactId>
-                <version>1.7.0.Alpha10</version>
-                <scope>import</scope>
-                <type>pom</type>
-            </dependency-->
-
-        </dependencies>
-    </dependencyManagement>
-
-        <build>
+    <build>
         <plugins>
             <plugin>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>2.3.2</version>
                 <configuration>
-                    <source>1.8</source>
-                    <target>1.8</target>
+                    <source>11</source>
+                    <target>11</target>
                 </configuration>
             </plugin>
             <plugin>
-    <artifactId>maven-surefire-plugin</artifactId>
-    <version>3.0.0-M5</version>
-</plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>3.0.0-M5</version>
+            </plugin>
 
         </plugins>
     </build>
@@ -123,24 +105,19 @@
             <version>3.1-SNAPSHOT</version>
         </dependency>
 
-        <!--dependency>
-            <groupId>org.junit.jupiter</groupId>
-            <artifactId>junit-jupiter-api</artifactId>
-            <version>5.7.0</version>
-        </dependency-->
-
-         <dependency>
+        <dependency>
             <groupId>org.junit.jupiter</groupId>
             <artifactId>junit-jupiter</artifactId>
-            <version>5.7.0</version>
+            <version>${junit.jupiter.version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.junit.platform</groupId>
             <artifactId>junit-platform-launcher</artifactId>
+            <version>1.7.2</version>
             <scope>test</scope>
         </dependency>
-        
+
         <dependency>
             <groupId>commons-httpclient</groupId>
             <artifactId>commons-httpclient</artifactId>
@@ -153,25 +130,23 @@
             <version>[2.2, 2.3-A00)</version>
         </dependency>
 
-
         <dependency>
             <groupId>org.jboss.arquillian.junit5</groupId>
             <artifactId>arquillian-junit5-container</artifactId>
             <version>1.7.0.Alpha10</version>
         </dependency>
 
-<dependency>
-    <groupId>org.glassfish.hk2</groupId>
-    <artifactId>hk2-locator</artifactId>
-    <version>3.0.0</version>
-</dependency>
+        <dependency>
+            <groupId>org.glassfish.hk2</groupId>
+            <artifactId>hk2-locator</artifactId>
+            <version>3.0.0</version>
+        </dependency>
 
-<dependency>
-    <groupId>org.jboss.arquillian.container</groupId>
-    <artifactId>arquillian-glassfish-managed-6</artifactId>
-    <version>1.0.0.Alpha1</version>
-</dependency>
-
+        <dependency>
+            <groupId>org.jboss.arquillian.container</groupId>
+            <artifactId>arquillian-glassfish-managed-6</artifactId>
+            <version>1.0.0.Alpha1</version>
+        </dependency>
 
     </dependencies>
 </project>
\ No newline at end of file
diff --git a/jersey-tck/pom.xml b/jersey-tck/pom.xml
index ff75d42..fced82d 100644
--- a/jersey-tck/pom.xml
+++ b/jersey-tck/pom.xml
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" ?>
-<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/xsd/maven-4.0.0.xsd">
+<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/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.glassfish.jersey.core</groupId>
@@ -11,30 +12,30 @@
     <description>This test verifies the compliance of Eclipse Jersey with Jakarta REST</description>
 
     <properties>
-        <maven.compiler.source>1.8</maven.compiler.source>
-        <maven.compiler.target>1.8</maven.compiler.target>
+        <maven.compiler.source>11</maven.compiler.source>
+        <maven.compiler.target>11</maven.compiler.target>
         <jersey.version>3.0.0</jersey.version>
-        <glassfish.container.version>6.0.0</glassfish.container.version>
-        <jakarta.platform.version>9.0.0</jakarta.platform.version>
+        <glassfish.container.version>6.1.0</glassfish.container.version>
+        <jakarta.platform.version>9.1.0</jakarta.platform.version>
+        <junit.jupiter.version>5.7.2</junit.jupiter.version>
     </properties>
 
     <dependencyManagement>
         <dependencies>
-            <!--dependency>
-                <groupId>org.glassfish.jersey</groupId>
-                <artifactId>jersey-bom</artifactId>
-                <version>3.0.0</version>
+            <dependency>
+                <groupId>org.junit</groupId>
+                <artifactId>junit-bom</artifactId>
+                <version>${junit.jupiter.version}</version>
                 <type>pom</type>
                 <scope>import</scope>
-            </dependency-->
-
-        <dependency>
-            <groupId>org.junit</groupId>
-            <artifactId>junit-bom</artifactId>
-            <version>5.7.0</version>
-            <type>pom</type>
-            <scope>import</scope>
-        </dependency>
+            </dependency>
+            <dependency>
+                <groupId>org.glassfish.jersey</groupId>
+                <artifactId>jersey-bom</artifactId>
+                <version>${jersey.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -47,70 +48,17 @@
         </dependency>
 
         <dependency>
-            <groupId>org.junit.jupiter</groupId>
-            <artifactId>junit-jupiter</artifactId>
-            <version>5.7.0</version>
-            <scope>test</scope>
-        </dependency>
-
-         <dependency>
-            <groupId>org.glassfish.jersey.inject</groupId>
-            <artifactId>jersey-hk2</artifactId>
-            <version>${jersey.version}</version>
-            <scope>test</scope>
-        </dependency>
-
-       <dependency>
-            <groupId>org.glassfish.jersey.core</groupId>
-            <artifactId>jersey-server</artifactId>
-            <version>${jersey.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.glassfish.jersey.core</groupId>
-            <artifactId>jersey-client</artifactId>
-            <version>${jersey.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.glassfish.jersey.media</groupId>
-            <artifactId>jersey-media-sse</artifactId>
-            <version>${jersey.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.glassfish.jersey.media</groupId>
-            <artifactId>jersey-media-json-binding</artifactId>
-            <version>${jersey.version}</version>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.glassfish.jersey.containers</groupId>
-            <artifactId>jersey-container-grizzly2-http</artifactId>
-            <version>${jersey.version}</version>
-            <scope>test</scope>
-        </dependency>
-         <dependency>
-                   <groupId>org.glassfish.jersey.containers</groupId>
-                   <artifactId>jersey-container-servlet</artifactId>
-                   <version>${jersey.version}</version>
-                   <scope>provided</scope>
-        </dependency>
-        <dependency>
             <groupId>org.glassfish.main.common</groupId>
             <artifactId>simple-glassfish-api</artifactId>
             <version>${glassfish.container.version}</version>
         </dependency>
 
-
         <dependency>
             <groupId>org.jboss.arquillian.junit5</groupId>
             <artifactId>arquillian-junit5-container</artifactId>
             <version>1.7.0.Alpha10</version>
         </dependency>
 
-
         <dependency>
             <groupId>jakarta.platform</groupId>
             <artifactId>jakarta.jakartaee-api</artifactId>
@@ -126,11 +74,11 @@
     </dependencies>
 
 
-<profiles>
-    <profile>
-        <id>arq-glassfish-managed</id>
-    </profile>
-</profiles>
+    <profiles>
+        <profile>
+            <id>arq-glassfish-managed</id>
+        </profile>
+    </profiles>
 
     <build>
         <plugins>
@@ -145,140 +93,129 @@
                         </goals>
                         <configuration>
                             <dependenciesToScan>jakarta.ws.rs:jakarta.ws.rs-tck</dependenciesToScan>
-                            <includes>
-                                 <include>**/tck/**/*IT</include>                            
-                            </includes>
                             <systemPropertyVariables>
-                            <GLASSFISH_HOME>${project.build.directory}/glassfish6</GLASSFISH_HOME>
-                            <servlet_adaptor>org.glassfish.jersey.servlet.ServletContainer</servlet_adaptor>
-                            <webServerHost>localhost</webServerHost>
-                            <webServerPort>8080</webServerPort>
-                            </systemPropertyVariables>
-                             <environmentVariables>
                                 <GLASSFISH_HOME>${project.build.directory}/glassfish6</GLASSFISH_HOME>
-                             </environmentVariables> 
+                                <servlet_adaptor>org.glassfish.jersey.servlet.ServletContainer</servlet_adaptor>
+                                <webServerHost>localhost</webServerHost>
+                                <webServerPort>8080</webServerPort>
+                            </systemPropertyVariables>
+                            <environmentVariables>
+                                <GLASSFISH_HOME>${project.build.directory}/glassfish6</GLASSFISH_HOME>
+                            </environmentVariables>
                         </configuration>
                     </execution>
                 </executions>
             </plugin>
 
-
- <plugin>
-     <groupId>org.apache.maven.plugins</groupId>
-     <artifactId>maven-dependency-plugin</artifactId>
-     <version>3.2.0</version>
-     <executions>
-         <execution>
-             <id>unpack</id>
-             <phase>pre-integration-test</phase>
-             <goals>
-                 <goal>unpack</goal>
-             </goals>
-             <configuration>
-                 <artifactItems>
-                     <artifactItem>
-                         <groupId>org.glassfish.main.distributions</groupId>
-                         <artifactId>glassfish</artifactId>
-                         <version>${glassfish.container.version}</version>
-                         <type>zip</type>
-                         <overWrite>false</overWrite>
-                         <outputDirectory>${project.build.directory}</outputDirectory>
-                     </artifactItem>
-                 </artifactItems>
-             </configuration>
-         </execution>
-        
-        
-        <execution>
-            <id>copy</id>
-            <phase>pre-integration-test</phase>
-            <goals>
-              <goal>copy</goal>
-            </goals>
-          
-        
-        <configuration>
-          <artifactItems>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.core</groupId>
-              <artifactId>jersey-client</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-client.jar</destFileName>
-            </artifactItem>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.core</groupId>
-              <artifactId>jersey-server</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-server.jar</destFileName>
-            </artifactItem>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.core</groupId>
-              <artifactId>jersey-common</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-common.jar</destFileName>
-            </artifactItem>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.containers</groupId>
-              <artifactId>jersey-container-grizzly2-http</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-container-grizzly2-http.jar</destFileName>
-            </artifactItem>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.containers</groupId>
-              <artifactId>jersey-container-servlet-core</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-container-servlet-core.jar</destFileName>
-            </artifactItem>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.containers</groupId>
-              <artifactId>jersey-container-servlet</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-container-servlet.jar</destFileName>
-            </artifactItem>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.media</groupId>
-              <artifactId>jersey-media-sse</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-media-sse.jar</destFileName>
-            </artifactItem>
-            <artifactItem>
-              <groupId>org.glassfish.jersey.media</groupId>
-              <artifactId>jersey-media-json-binding</artifactId>
-              <version>${jersey.version}</version>
-              <type>jar</type>
-              <overWrite>true</overWrite>
-              <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
-              <destFileName>jersey-media-json-binding.jar</destFileName>
-            </artifactItem>
-          </artifactItems>
-        </configuration>
-        </execution>
-
-     </executions>
-</plugin>
-
-
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <version>3.2.0</version>
+                <executions>
+                    <execution>
+                        <id>unpack</id>
+                        <phase>pre-integration-test</phase>
+                        <goals>
+                            <goal>unpack</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.glassfish.main.distributions</groupId>
+                                    <artifactId>glassfish</artifactId>
+                                    <version>${glassfish.container.version}</version>
+                                    <type>zip</type>
+                                    <overWrite>false</overWrite>
+                                    <outputDirectory>${project.build.directory}</outputDirectory>
+                                </artifactItem>
+                            </artifactItems>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>copy</id>
+                        <phase>pre-integration-test</phase>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.core</groupId>
+                                    <artifactId>jersey-client</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-client.jar</destFileName>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.core</groupId>
+                                    <artifactId>jersey-server</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-server.jar</destFileName>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.core</groupId>
+                                    <artifactId>jersey-common</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-common.jar</destFileName>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.containers</groupId>
+                                    <artifactId>jersey-container-grizzly2-http</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-container-grizzly2-http.jar</destFileName>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.containers</groupId>
+                                    <artifactId>jersey-container-servlet-core</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-container-servlet-core.jar</destFileName>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.containers</groupId>
+                                    <artifactId>jersey-container-servlet</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-container-servlet.jar</destFileName>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.media</groupId>
+                                    <artifactId>jersey-media-sse</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-media-sse.jar</destFileName>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.glassfish.jersey.media</groupId>
+                                    <artifactId>jersey-media-json-binding</artifactId>
+                                    <version>${jersey.version}</version>
+                                    <type>jar</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/glassfish6/glassfish/modules</outputDirectory>
+                                    <destFileName>jersey-media-json-binding.jar</destFileName>
+                                </artifactItem>
+                            </artifactItems>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 </project>
\ No newline at end of file
diff --git a/jersey-tck/src/test/resources/arquillian.xml b/jersey-tck/src/test/resources/arquillian.xml
deleted file mode 100644
index 61f640b..0000000
--- a/jersey-tck/src/test/resources/arquillian.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-<arquillian>
-<container qualifier="arq-glassfish-managed">
-    <configuration>
-        <property name="allowConnectingToRunningServer">false</property>
-        <!--            <property name="glassFishHome">target/${glassfish.home}</property>-->
-        <property name="adminHost">localhost</property>
-        <property name="webServerHost">localhost</property>
-        <property name="webServerPort">8080</property>
-        <property name="adminPort">4848</property>
-        <property name="enableDerby">${enableDerby:true}</property>
-        <property name="outputToConsole">true</property>
-    </configuration>
-</container>
-</arquillian>
\ No newline at end of file