Skip to content

Instantly share code, notes, and snippets.

@leandrohsilveira
Created February 26, 2016 15:26
Show Gist options
  • Save leandrohsilveira/374d2837c7ea077e7434 to your computer and use it in GitHub Desktop.
Save leandrohsilveira/374d2837c7ea077e7434 to your computer and use it in GitHub Desktop.
Maven Compiler e WAR Plugin para Projeto Web
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<!-- web.xml is not mandatory since JavaEE 5 -->
<warName>${project.artifactId}</warName>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment