Files
anyame-vue-bff/anyame-kodik-search-api/pom.xml
2025-10-05 18:55:26 +05:00

62 lines
2.2 KiB
XML

<?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>
<artifactId>anyame-bff-parent</artifactId>
<groupId>com.backend.vue.bff.service</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>com.backend.vue.bff.service</groupId>
<artifactId>anyame-kodik-search-api</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>anyame-kodik-search-api</name>
<description>Search API for anyame-kodik</description>
<url />
<licenses>
<license />
</licenses>
<developers>
<developer />
</developers>
<scm>
<connection />
<developerConnection />
<tag />
<url />
</scm>
<properties></properties>
<dependencies></dependencies>
<build>
<plugins>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.14.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${project.basedir}/src/main/resources/openapi.json</inputSpec>
<generatorName>java</generatorName>
<configOptions>
<library>restclient</library>
<apiPackage>com.backend.search.kodik.api</apiPackage>
<modelPackage>com.backend.search.kodik.model</modelPackage>
<openApiNullable>false</openApiNullable>
<useJakartaEe>true</useJakartaEe>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>