mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-24 09:40:53 +00:00
* added test with external-ref ("external dependency" installed before actual usage) * fixed test with resource on classpath added test with resource on classpath with external-ref. Test with profile 'resource' was wrong as it took JAR into account, but there was no 'petstore.yaml' on classpath. * Remove dependency scan and do not modify inputSpec provided by user It is still possible to provide JARs as inputSpec, however the user has to provide it by hand. Providing dependencies in plugin section still allows correct inputSpec resolution on classpath.
14 lines
598 B
XML
14 lines
598 B
XML
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>sample-external-ref-schema</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>sample-external-ref-schema</name>
|
|
<url>https://maven.apache.org</url>
|
|
|
|
<!-- this POM is not a module of multi-module project to keep resources out of classpath-->
|
|
|
|
</project>
|