|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright 2022 OpenAPI-Generator Contributors (https://openapi-generator.tech) |
| 4 | + ~ |
| 5 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + ~ you may not use this file except in compliance with the License. |
| 7 | + ~ You may obtain a copy of the License at |
| 8 | + ~ |
| 9 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + ~ |
| 11 | + ~ Unless required by applicable law or agreed to in writing, software |
| 12 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + ~ See the License for the specific language governing permissions and |
| 15 | + ~ limitations under the License. |
| 16 | + --> |
| 17 | + |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + |
| 22 | + <groupId>org.openapitools.maven.its</groupId> |
| 23 | + <artifactId>jaxrs-cxf-client-issue5077</artifactId> |
| 24 | + <version>1.0-SNAPSHOT</version> |
| 25 | + |
| 26 | + <properties> |
| 27 | + <maven.javadoc.skip>true</maven.javadoc.skip> |
| 28 | + </properties> |
| 29 | + |
| 30 | + <build> |
| 31 | + <plugins> |
| 32 | + <plugin> |
| 33 | + <groupId>org.apache.maven.plugins</groupId> |
| 34 | + <artifactId>maven-compiler-plugin</artifactId> |
| 35 | + <version>3.10.0</version> |
| 36 | + <configuration> |
| 37 | + <source>11</source> |
| 38 | + <target>11</target> |
| 39 | + </configuration> |
| 40 | + </plugin> |
| 41 | + <plugin> |
| 42 | + <groupId>@project.groupId@</groupId> |
| 43 | + <artifactId>@project.artifactId@</artifactId> |
| 44 | + <version>@project.version@</version> |
| 45 | + <configuration> |
| 46 | + <inputSpec>https://raw.githubusercontent.com/OpenAPITools/openapi-generator/master/modules/openapi-generator/src/test/resources/3_0/petstore.yaml</inputSpec> |
| 47 | + <generatorName>jaxrs-cxf-client</generatorName> |
| 48 | + <dateLibrary>java8</dateLibrary> |
| 49 | + <output>${basedir}/out</output> |
| 50 | + <configOptions> |
| 51 | + <jackson>true</jackson> |
| 52 | + </configOptions> |
| 53 | + </configuration> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <id>remote</id> |
| 57 | + <phase>generate-sources</phase> |
| 58 | + <goals> |
| 59 | + <goal>generate</goal> |
| 60 | + </goals> |
| 61 | + </execution> |
| 62 | + </executions> |
| 63 | + </plugin> |
| 64 | + </plugins> |
| 65 | + </build> |
| 66 | +</project> |
0 commit comments