aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-12-03 15:28:06 +0300
committerGravatar Vitaly Takmazov2022-12-14 12:57:52 +0300
commit0c0ea8897e64461b1cfa9cd86a939b48f0bdd640 (patch)
treef11c73b8246b0724b26ca08529c3c702e1722d79 /pom.xml
parent8344ea3e3e652f5307ffb6115d6fdebf638ba098 (diff)
Initial PostgreSQL schema and profile
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 54fa8d0e..0e0b6f66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -372,6 +372,25 @@
<properties>
<activatedProperties>mysql</activatedProperties>
</properties>
+ <dependencies>
+ <dependency>
+ <groupId>org.flywaydb</groupId>
+ <artifactId>flyway-mysql</artifactId>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>postgres</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ <properties>
+ <activatedProperties>postgres</activatedProperties>
+ </properties>
</profile>
<profile>
<id>production</id>
@@ -390,5 +409,11 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>local</id>
+ <properties>
+ <activatedProperties>local</activatedProperties>
+ </properties>
+ </profile>
</profiles>
</project>