Skip to content
Snippets Groups Projects
Commit 348f9517 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-4718 OZG-4722 Improve gitignore and pom.xml (#2)

parent 15722993
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
<groupId>de.ozgcloud</groupId>
<artifactId>administration</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>administration</name>
<name>Administration</name>
<description>Administration Backend Project</description>
<properties>
<java.version>21</java.version>
......@@ -22,6 +22,7 @@
<build.url>no-url</build.url>
</properties>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
......@@ -35,6 +36,7 @@
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Dev -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
......@@ -46,6 +48,8 @@
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
......
package de.ozgcloud.einstellung;
package de.ozgcloud.admin;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
......
package de.ozgcloud.einstellung;
package de.ozgcloud.admin;
import java.time.Instant;
......
package de.ozgcloud.einstellung;
package de.ozgcloud.admin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
......
package de.ozgcloud.einstellung;
package de.ozgcloud.admin;
import java.time.Instant;
import java.util.Optional;
......
package de.ozgcloud.einstellung;
package de.ozgcloud.admin;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
......
package de.ozgcloud.einstellung;
package de.ozgcloud.admin;
import static org.mockito.Mockito.*;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment