Skip to content

Instantly share code, notes, and snippets.

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 kaiwinter/bbdc1f4b5a93d1e0b1b80a12076a38e7 to your computer and use it in GitHub Desktop.
Save kaiwinter/bbdc1f4b5a93d1e0b1b80a12076a38e7 to your computer and use it in GitHub Desktop.
Complete Arquillian deployment
@Deployment
public static WebArchive createDeployment() {
WebArchive webArchive = (WebArchive) EmbeddedMaven.forProject(new File("pom.xml")) //
.useMaven3Version("3.3.9") //
.setGoals("package") //
.setQuiet() //
.skipTests(true) //
.setDebugLoggerLevel() //
.build() //
.getDefaultBuiltArchive();
return webArchive;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment