/
docNemo
/
arachni-articles
Обзор
Документация
Войти
/
docNemo
/
arachni-articles
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pom.xml
109 строк
4 KB
docNemo
Feature/devslaves-971395 : (#1)
23 окт 2023, 15:01
Не верифицирован
23 окт 2023, 15:01
c9ddd85
Код
Авторство
О чём код?
<?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> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.1.0</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>ru.mai.arachni.articles</groupId> <artifactId>arachni-articles</artifactId> <version>0.1.0</version> <packaging>pom</packaging> <name>arachni-articles</name> <modules> <module>arachni-articles-core</module> <module>arachni-articles-api</module> <module>arachni-articles-db</module> <module>arachni-articles-object-storage</module> </modules> <properties> <java.version>20</java.version> <lombok.version>1.18.26</lombok.version> <checkstyle.version>3.2.2</checkstyle.version> <checkstyle.xml.path>config/checkstyle/checkstyle.xml</checkstyle.xml.path> <snakeyaml.version>2.0</snakeyaml.version> <springdoc.version>2.0.2</springdoc.version> <postgresql.version>42.2.27</postgresql.version> <liquibase-core.version>4.23.0</liquibase-core.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <version>${springdoc.version}</version> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>${liquibase-core.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.version}</version> <configuration> <configLocation>${checkstyle.xml.path}</configLocation> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <includeResources>true</includeResources> <includeTestSourceDirectory>true</includeTestSourceDirectory> <includeTestResources>true</includeTestResources> <includes>**\/*.java</includes> </configuration> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>