Skip to content
Snippets Groups Projects
Commit 3cdd2974 authored by Andreas Kluge Svendsrud's avatar Andreas Kluge Svendsrud
Browse files

Merge branch 'bugfix/update-pom.xml-outdated' into 'master'

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

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