h2s spec maven plugin 1.0.0 with h2spec 2.6.0 (#5231)
* use our fork of h2spec-maven-plugin and upgrade version Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
c09a2c362c
commit
ccab123f20
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
|
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
|
||||||
|
<manual.test.port>28888</manual.test.port>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -25,14 +26,14 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.github.madgnome</groupId>
|
<groupId>org.mortbay.jetty</groupId>
|
||||||
<artifactId>h2spec-maven-plugin</artifactId>
|
<artifactId>h2spec-maven-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<mainClass>org.eclipse.jetty.http2.server.H2SpecServer</mainClass>
|
<mainClass>org.eclipse.jetty.http2.server.H2SpecServer</mainClass>
|
||||||
<skip>${skipTests}</skip>
|
<skip>${skipTests}</skip>
|
||||||
|
<junitPackage>org.eclipse.jetty.h2spec</junitPackage>
|
||||||
<excludeSpecs>
|
<excludeSpecs>
|
||||||
<!-- see: https://github.com/summerwind/h2spec/issues/115 -->
|
<excludeSpec>3.5 - Sends invalid connection preface</excludeSpec>
|
||||||
<excludeSpec>6.9.2 - Changes SETTINGS_INITIAL_WINDOW_SIZE after sending HEADERS frame</excludeSpec>
|
|
||||||
</excludeSpecs>
|
</excludeSpecs>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
|
@ -93,4 +94,34 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>run-spec-server</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>spec-server-run</id>
|
||||||
|
<phase>test</phase>
|
||||||
|
<configuration>
|
||||||
|
<mainClass>org.eclipse.jetty.http2.server.H2SpecServer</mainClass>
|
||||||
|
<classpathScope>test</classpathScope>
|
||||||
|
<arguments>
|
||||||
|
<argument>${manual.test.port}</argument>
|
||||||
|
</arguments>
|
||||||
|
</configuration>
|
||||||
|
<goals>
|
||||||
|
<goal>java</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
4
pom.xml
4
pom.xml
|
@ -939,9 +939,9 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.github.madgnome</groupId>
|
<groupId>org.mortbay.jetty</groupId>
|
||||||
<artifactId>h2spec-maven-plugin</artifactId>
|
<artifactId>h2spec-maven-plugin</artifactId>
|
||||||
<version>0.6</version>
|
<version>1.0.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
|
|
Loading…
Reference in New Issue