Skip to content

Instantly share code, notes, and snippets.

@robsongomes
Created July 16, 2017 15:18
Show Gist options
  • Save robsongomes/d04daf35e72db504ac3a7d471f64b8e2 to your computer and use it in GitHub Desktop.
Save robsongomes/d04daf35e72db504ac3a7d471f64b8e2 to your computer and use it in GitHub Desktop.
Usando profiles no maven
<!-- dependências comuns aqui -->
....
<profile>
<id>prod</id>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>dev</id>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>
</profile>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment