diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 31 |
1 files changed, 10 insertions, 21 deletions
@@ -132,7 +132,6 @@ <artifactId>mariadb-java-client</artifactId> <scope>runtime</scope> </dependency> - <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> @@ -266,6 +265,15 @@ <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <version>2.0.0</version> </dependency> + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.flywaydb</groupId> + <artifactId>flyway-mysql</artifactId> + </dependency> </dependencies> <build> <pluginManagement> @@ -365,23 +373,10 @@ <id>mysql</id> <properties> <activatedProperties>mysql</activatedProperties> - </properties> - <dependencies> - <dependency> - <groupId>org.flywaydb</groupId> - <artifactId>flyway-mysql</artifactId> - </dependency> - </dependencies> + </properties> </profile> <profile> <id>postgres</id> - <dependencies> - <dependency> - <groupId>org.postgresql</groupId> - <artifactId>postgresql</artifactId> - <scope>runtime</scope> - </dependency> - </dependencies> <properties> <activatedProperties>postgres</activatedProperties> </properties> @@ -403,11 +398,5 @@ </dependency> </dependencies> </profile> - <profile> - <id>local</id> - <properties> - <activatedProperties>local</activatedProperties> - </properties> - </profile> </profiles> </project> |