Compare commits

..

2 Commits

Author SHA1 Message Date
a2982790f6 Merge branch 'develop' of https://git.ccalm.org/igor/org.ccalm.main into develop 2026-03-18 07:33:07 +05:00
1cc842d9da Update POM 2026-03-18 07:32:56 +05:00
2 changed files with 14 additions and 1 deletions

14
pom.xml
View File

@ -35,9 +35,21 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- 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>
@ -163,7 +175,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-main.yml</spring.config.location>

File diff suppressed because one or more lines are too long