|
@@ -8,35 +8,47 @@
|
|
|
<artifactId>aegoncalc</artifactId>
|
|
<artifactId>aegoncalc</artifactId>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
+ <version>2.4.0</version>
|
|
|
|
|
+ <relativePath/>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+
|
|
|
<properties>
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
|
|
- <dependencyManagement>
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.junit</groupId>
|
|
|
|
|
- <artifactId>junit-bom</artifactId>
|
|
|
|
|
- <version>5.7.0</version>
|
|
|
|
|
- <type>pom</type>
|
|
|
|
|
- <scope>import</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- </dependencies>
|
|
|
|
|
- </dependencyManagement>
|
|
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.junit.jupiter</groupId>
|
|
|
|
|
- <artifactId>junit-jupiter</artifactId>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.hamcrest</groupId>
|
|
|
|
|
- <artifactId>hamcrest</artifactId>
|
|
|
|
|
- <version>2.2</version>
|
|
|
|
|
|
|
+ <groupId>org.junit.jupiter</groupId>
|
|
|
|
|
+ <artifactId>junit-jupiter</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|
|
</project>
|