Skip to content

Commit f4e4f55

Browse files
committed
Fix dependencies for maven
1 parent 5ba5eed commit f4e4f55

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

pom.xml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,19 @@
2727
<artifactId>spring-boot-starter-web</artifactId>
2828
</dependency>
2929
<dependency>
30-
<groupId>org.springframework.boot</groupId>
31-
<artifactId>spring-boot-starter-data-jpa</artifactId>
32-
</dependency>
33-
<dependency>
34-
<groupId>org.postgresql</groupId>
35-
<artifactId>postgresql</artifactId>
36-
<version>42.2.2</version>
37-
<scope>runtime</scope>
30+
<groupId>org.apache.tomcat.embed</groupId>
31+
<artifactId>tomcat-embed-jasper</artifactId>
32+
<scope>provided</scope>
3833
</dependency>
3934
<dependency>
40-
<groupId>org.springframework.boot</groupId>
41-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
35+
<groupId>javax.servlet</groupId>
36+
<artifactId>servlet-api</artifactId>
37+
<version>2.5</version>
4238
</dependency>
4339
</dependencies>
4440

4541
<build>
42+
<finalName>${project.artifactId}</finalName>
4643
<plugins>
4744
<plugin>
4845
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)