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 --> <!-- plugins -->
</properties> </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> </project>

View file

@ -0,0 +1,13 @@
package eu.ztsh.wymiana;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Main {
public static void main(String[] args) {
SpringApplication.run(Main.class);
}
}