96 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			4.0 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>
 | 
						|
    <artifactId>spring-boot-openapi</artifactId>
 | 
						|
    <name>spring-boot-openapi</name>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
    <description>OpenAPI Generator module</description>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>org.springframework.boot</groupId>
 | 
						|
        <artifactId>spring-boot-starter-parent</artifactId>
 | 
						|
        <version>2.7.11</version>
 | 
						|
        <relativePath/>
 | 
						|
    </parent>
 | 
						|
 | 
						|
 | 
						|
<!--    <parent>-->
 | 
						|
<!--        <groupId>com.baeldung.spring-boot-modules</groupId>-->
 | 
						|
<!--        <artifactId>spring-boot-modules</artifactId>-->
 | 
						|
<!--        <version>1.0.0-SNAPSHOT</version>-->
 | 
						|
<!--    </parent>-->
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-test</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-validation</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.validation</groupId>
 | 
						|
            <artifactId>validation-api</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.swagger.core.v3</groupId>
 | 
						|
            <artifactId>swagger-annotations</artifactId>
 | 
						|
            <version>${swagger-annotations.version}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.openapitools</groupId>
 | 
						|
                <artifactId>openapi-generator-maven-plugin</artifactId>
 | 
						|
                <version>${openapi-generator.version}</version>
 | 
						|
                <executions>
 | 
						|
                    <execution>
 | 
						|
                        <goals>
 | 
						|
                            <goal>generate</goal>
 | 
						|
                        </goals>
 | 
						|
                        <configuration>
 | 
						|
                            <skipValidateSpec>true</skipValidateSpec>
 | 
						|
                            <inputSpec>${project.basedir}/src/main/resources/api/quotes.yaml</inputSpec>
 | 
						|
                            <generatorName>spring</generatorName>
 | 
						|
                            <supportingFilesToGenerate>ApiUtil.java</supportingFilesToGenerate>
 | 
						|
                            <templateResourcePath>${project.basedir}/src/main/resources/templates/JavaSpring</templateResourcePath>
 | 
						|
                            <globalProperties>
 | 
						|
                                <debugOpenAPI>true</debugOpenAPI>
 | 
						|
                            </globalProperties>
 | 
						|
                            <configOptions>
 | 
						|
                                <dateLibrary>java8</dateLibrary>
 | 
						|
                                <openApiNullable>false</openApiNullable>
 | 
						|
                                <delegatePattern>true</delegatePattern>
 | 
						|
                                <apiPackage>com.baeldung.tutorials.openapi.quotes.api</apiPackage>
 | 
						|
                                <modelPackage>com.baeldung.tutorials.openapi.quotes.api.model</modelPackage>
 | 
						|
                                <documentationProvider>source</documentationProvider>
 | 
						|
                            </configOptions>
 | 
						|
                        </configuration>
 | 
						|
                    </execution>
 | 
						|
                </executions>
 | 
						|
            </plugin>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <maven.compiler.source>17</maven.compiler.source>
 | 
						|
        <maven.compiler.target>17</maven.compiler.target>
 | 
						|
        <openapi-generator.version>7.3.0</openapi-generator.version>
 | 
						|
        <swagger-annotations.version>2.2.20</swagger-annotations.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |