/
opeg
/
java-openapi-dto-verifier
Обзор
Документация
Войти
/
opeg
/
java-openapi-dto-verifier
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
pom.xml
90 строк
4 KB
Oleg Pegov
## 0.8.24
06 авг 2026, 17:12
06 авг 2026, 17:12
40007fa
Код
Авторство
О чём код?
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>ru.olegpegov.jodv</groupId> <artifactId>java-openapi-dto-verifier-reactor</artifactId> <version>0.8.24</version> <packaging>pom</packaging> <name>Java OpenAPI DTO Verifier Reactor</name> <description>Aggregator build for the OpenAPI DTO contract checker library and examples.</description> <modules> <module>java-openapi-dto-verifier</module> <module>java-openapi-dto-verifier-spring</module> <module>examples</module> </modules> <properties> <plantuml.version>1.2026.5</plantuml.version> <maven.dependency.plugin.version>3.6.1</maven.dependency.plugin.version> <exec.maven.plugin.version>3.3.0</exec.maven.plugin.version> </properties> <profiles> <profile> <id>docs</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven.dependency.plugin.version}</version> <executions> <execution> <id>copy-local-plantuml-jar</id> <phase>generate-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml-mit</artifactId> <version>${plantuml.version}</version> <outputDirectory>${project.build.directory}/plantuml</outputDirectory> <destFileName>plantuml.jar</destFileName> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec.maven.plugin.version}</version> <executions> <execution> <id>generate-documentation-svg</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>${java.home}/bin/java</executable> <arguments> <argument>-Djava.awt.headless=true</argument> <argument>-jar</argument> <argument>${project.build.directory}/plantuml/plantuml.jar</argument> <argument>-tsvg</argument> <argument>-charset</argument> <argument>UTF-8</argument> <argument>-nometadata</argument> <argument>${project.basedir}/docs/ru/architecture/diagrams</argument> <argument>${project.basedir}/docs/ru/user/diagrams</argument> <argument>${project.basedir}/docs/ru/requirements/system</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>