build: Basic Spring Boot dependencies

This commit is contained in:
Piotr Dec 2024-05-20 23:02:09 +02:00
parent 74394649c5
commit 67ec503341
Signed by: stawros
GPG key ID: F89F27AD8F881A91
4 changed files with 36 additions and 0 deletions

23
pom.xml
View file

@ -30,4 +30,27 @@
<!-- plugins -->
</properties>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
</dependency>
</dependencies>
</project>