presto-openapi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-openapi</artifactId>
<version>0.297</version>
</dependency><?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>com.facebook.presto</groupId>
<artifactId>presto-root</artifactId>
<version>0.297</version>
</parent>
<artifactId>presto-openapi</artifactId>
<name>presto-openapi</name>
<properties>
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
<air.check.skip-modernizer>true</air.check.skip-modernizer>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<!-- last version with Java 8 support -->
<version>6.6.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<executions>
<execution>
<id>generate openapi HTML documentation</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<!-- required to be set, even though it isn't used-->
<inputSpec>${project.basedir}/src/main/resources</inputSpec>
<inputSpecRootDirectory>${project.basedir}/src/main/resources</inputSpecRootDirectory>
<mergedFileName>_full_spec</mergedFileName>
<generatorName>html</generatorName>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-openapi</artifactId>
<additionalProperties>
<property>appName=presto</property>
<property>appDescription="Presto - SQL on Anything"</property>
<property>infoUrl=https://prestodb.io/docs/</property>
<property>infoEmail=https://prestodb.slack.com/</property>
<property>version=${project.version}</property>
</additionalProperties>
</configuration>
</execution>
<execution>
<id>generate openapi spec file</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<!-- required to be set, even though it isn't used-->
<inputSpec>${project.basedir}/src/main/resources</inputSpec>
<inputSpecRootDirectory>${project.basedir}/src/main/resources</inputSpecRootDirectory>
<mergedFileName>_full_spec</mergedFileName>
<generatorName>openapi</generatorName>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-openapi</artifactId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>