Skip to content
Snippets Groups Projects
Commit 9e7cc0f7 authored by Andreas's avatar Andreas
Browse files

Update pom.xml and file paths for main and test classes

parent 0934f0e5
No related branches found
No related tags found
1 merge request!1Update pom.xml and file paths for main and test classes
Pipeline #273106 passed
......@@ -16,6 +16,9 @@
*.iml
*.ipr
### VScode ###
.vscode/
### NetBeans ###
/nbproject/private/
/build/
......
......@@ -3,25 +3,25 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<groupId>no.ntnu.idi.stud.savingsapp</groupId>
<artifactId>sparesti</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<name>SpareSti - Personalized Saving Journey</name>
<description>SpareSti is designed to transform saving into an engaging activity.</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.5</version>
<version>3.2.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<java.version>21</java.version>
</properties>
<dependencies>
......@@ -46,10 +46,8 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
</project>
package com.example.demo;
package no.ntnu.idi.stud.savingsapp;
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
......
package com.example.demo;
package no.ntnu.idi.stud.savingsapp;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment