Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

Commit

Permalink
feat: change maven default profile to kubernetes profile (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
aureamunoz authored and cmoulliard committed Sep 19, 2019
1 parent 1c05c37 commit f1d3ec9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pkg/template/tmpl/crud/1.5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,6 @@
<profiles>
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
Expand All @@ -186,6 +183,9 @@
</profile>
<profile>
<id>kubernetes</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
Expand Down
6 changes: 3 additions & 3 deletions pkg/template/tmpl/crud/2.1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,6 @@
<profiles>
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
Expand All @@ -204,6 +201,9 @@
</profile>
<profile>
<id>kubernetes</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
Expand Down

0 comments on commit f1d3ec9

Please sign in to comment.