Update POM

This commit is contained in:
2026-03-18 07:31:48 +05:00
parent 933de62469
commit 34976957ce
2 changed files with 15 additions and 2 deletions

14
pom.xml
View File

@ -30,9 +30,21 @@
<java.version>21</java.version>
</properties>
<dependencies>
<!-- WEB без Tomcat -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Undertow вместо Tomcat -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@ -144,7 +156,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.1.2</version>
<configuration>
<systemPropertyVariables>
<spring.config.location>file:org_ccalm_dbms.yml</spring.config.location>