Skip to content

Commit b435cfa

Browse files
fix: correct pom.xml and add Spring Security
1 parent f789f0d commit b435cfa

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,18 @@
6060
<artifactId>h2</artifactId>
6161
<scope>runtime</scope>
6262
</dependency>
63-
64-
<!-- Database - PostgreSQL (Production) -->
63+
64+
<!-- Database - PostgreSQL -->
6565
<dependency>
6666
<groupId>org.postgresql</groupId>
6767
<artifactId>postgresql</artifactId>
68-
<version>${postgresql.version}</version>
6968
<scope>runtime</scope>
7069
</dependency>
7170

7271
<!-- Database Migrations -->
7372
<dependency>
7473
<groupId>org.flywaydb</groupId>
7574
<artifactId>flyway-core</artifactId>
76-
<version>${flyway.version}</version>
7775
</dependency>
7876

7977
<!-- Testing -->
@@ -97,6 +95,10 @@
9795
<artifactId>postgresql</artifactId>
9896
<scope>test</scope>
9997
</dependency>
98+
<dependency>
99+
<groupId>org.springframework.boot</groupId>
100+
<artifactId>spring-boot-starter-security</artifactId>
101+
</dependency>
100102
</dependencies>
101103

102104
<build>
@@ -108,7 +110,6 @@
108110
<plugin>
109111
<groupId>org.flywaydb</groupId>
110112
<artifactId>flyway-maven-plugin</artifactId>
111-
<version>${flyway.version}</version>
112113
<configuration>
113114
<url>jdbc:h2:file:./target/testdb</url>
114115
<user>sa</user>

0 commit comments

Comments
 (0)