Skip to content

Instantly share code, notes, and snippets.

@Karm
Created February 17, 2017 10:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Karm/ec00f490b7318a62be76bc6120f052a6 to your computer and use it in GitHub Desktop.
Save Karm/ec00f490b7318a62be76bc6120f052a6 to your computer and use it in GitHub Desktop.
APLN
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${org.apache.maven.plugins.surefire.version}</version>
<configuration>
<includes>
<!-- <include>**/TestSuite.*</include> -->
<include>${runTests}</include>
</includes>
<systemPropertyVariables>
<excludeTest>${excludeTest}</excludeTest>
</systemPropertyVariables>
<testFailureIgnore>true</testFailureIgnore>
<forkCount>1</forkCount>
<argLine>
-Xbootclasspath/p:${settings.localRepository}/org/mortbay/jetty/alpn/alpn-boot/${alpn-boot-version}/alpn-boot-${alpn-boot-version}.jar
</argLine>
</configuration>
<dependencies>
<dependency>
<groupId>org.mortbay.jetty.alpn</groupId>
<artifactId>alpn-boot</artifactId>
<version>${alpn-boot-version}</version>
</dependency>
</dependencies>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment