Skip to content

Instantly share code, notes, and snippets.

@sayadi
Last active August 11, 2019 13:25
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 sayadi/44bdea85b4dc289864cbdf65b8c23eb2 to your computer and use it in GitHub Desktop.
Save sayadi/44bdea85b4dc289864cbdf65b8c23eb2 to your computer and use it in GitHub Desktop.
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<spring.profile.from.maven/>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>tempv</id>
<properties>
<spring.profile.from.maven>temp</spring.profile.from.maven>
</properties>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment