Skip to content

Instantly share code, notes, and snippets.

@leandrohsilveira
Last active February 26, 2016 15:20
Show Gist options
  • Save leandrohsilveira/6c655ab22c0814c355f4 to your computer and use it in GitHub Desktop.
Save leandrohsilveira/6c655ab22c0814c355f4 to your computer and use it in GitHub Desktop.
Gerência de dependências para JEE 7 Com Wildfly
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>jboss-javaee-7.0-with-tools</artifactId>
<version>8.2.0.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>jboss-javaee-7.0-with-hibernate</artifactId>
<version>8.2.0.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment