Edited pom.xml dependencies to fix Sprint Boot stopping error

This commit is contained in:
Lemonochrme 2024-11-25 15:13:44 +01:00
parent 847333a1fe
commit 1f9ec0bf9d
2 changed files with 7 additions and 0 deletions

View file

@ -35,6 +35,11 @@
<artifactId>spring-boot-starter</artifactId> <artifactId>spring-boot-starter</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
@ -42,6 +47,7 @@
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View file

@ -1 +1,2 @@
spring.application.name=helpapp spring.application.name=helpapp
server.port=8080