/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-boot-modules/spring-boot-basic-customization/pom.xml
89 строк
3 KB
Harry9656
JAVA-31190: Preparation for migrating spring-boot-modules to version 3. (#15834)
27 фев 2024, 04:49
Не верифицирован
27 фев 2024, 04:49
aefd833
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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> <artifactId>spring-boot-basic-customization</artifactId> <name>spring-boot-basic-customization</name> <packaging>jar</packaging> <description>Module For Spring Boot Basic Customization</description> <parent> <groupId>com.baeldung.spring-boot-modules</groupId> <artifactId>spring-boot-modules</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>errorhandling</id> <properties> <spring.boot.mainclass>com.baeldung.errorhandling.ErrorHandlingApplication</spring.boot.mainclass> </properties> </profile> <profile> <id>filter</id> <properties> <spring.boot.mainclass>com.baeldung.bootcustomfilters.SpringBootFiltersApplication</spring.boot.mainclass> </properties> </profile> <profile> <id>customapplication</id> <properties> <spring.boot.mainclass>com.baeldung.changeport.CustomApplication</spring.boot.mainclass> </properties> </profile> <profile> <id>failureanalyzer</id> <properties> <spring.boot.mainclass>com.baeldung.failureanalyzer.FailureAnalyzerApplication</spring.boot.mainclass> </properties> </profile> <profile> <id>favicon</id> <properties> <spring.boot.mainclass>com.baeldung.favicon.FaviconApplication</spring.boot.mainclass> </properties> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot-maven-plugin.version}</version> <configuration> <mainClass>${spring.boot.mainclass}</mainClass> </configuration> </plugin> </plugins> </build> <properties> <spring-boot-maven-plugin.version>3.1.5</spring-boot-maven-plugin.version> <!-- The main class to start by executing "java -jar" --> <start-class>com.baeldung.changeport.CustomApplication</start-class> </properties> </project>