Skip to content

Instantly share code, notes, and snippets.

@guilhermegregio
Created August 2, 2013 17:54
Show Gist options
  • Save guilhermegregio/6141903 to your computer and use it in GitHub Desktop.
Save guilhermegregio/6141903 to your computer and use it in GitHub Desktop.
pom.xml básico para projetos java com jUnit.
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.gregio</groupId>
<artifactId>NAME</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment