114 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			4.1 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
    <artifactId>spring-boot-springdoc</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <name>spring-boot-springdoc</name>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
    <description>Project for Springdoc integration</description>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-boot-2</artifactId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../../parent-boot-2</relativePath>
 | 
						|
    </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-data-jpa</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.h2database</groupId>
 | 
						|
            <artifactId>h2</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-test</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- SpringDoc -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springdoc</groupId>
 | 
						|
            <artifactId>springdoc-openapi-ui</artifactId>
 | 
						|
            <version>${springdoc.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springdoc</groupId>
 | 
						|
            <artifactId>springdoc-openapi-data-rest</artifactId>
 | 
						|
            <version>${springdoc.version}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <java.version>1.8</java.version>
 | 
						|
        <springdoc.version>1.2.32</springdoc.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
    <profiles>
 | 
						|
        <profile>
 | 
						|
            <id>integration</id>
 | 
						|
            <build>
 | 
						|
                <plugins>
 | 
						|
                    <plugin>
 | 
						|
                        <groupId>org.springframework.boot</groupId>
 | 
						|
                        <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
                        <version>2.2.2.RELEASE</version>
 | 
						|
                        <executions>
 | 
						|
                            <execution>
 | 
						|
                                <id>pre-integration-test</id>
 | 
						|
                                <goals>
 | 
						|
                                    <goal>start</goal>
 | 
						|
                                </goals>
 | 
						|
                            </execution>
 | 
						|
                            <execution>
 | 
						|
                                <id>post-integration-test</id>
 | 
						|
                                <goals>
 | 
						|
                                    <goal>stop</goal>
 | 
						|
                                </goals>
 | 
						|
                            </execution>
 | 
						|
                        </executions>
 | 
						|
                    </plugin>
 | 
						|
                    <plugin>
 | 
						|
                        <groupId>org.springdoc</groupId>
 | 
						|
                        <artifactId>springdoc-openapi-maven-plugin</artifactId>
 | 
						|
                        <version>0.2</version>
 | 
						|
                        <executions>
 | 
						|
                            <execution>
 | 
						|
                                <phase>integration-test</phase>
 | 
						|
                                <goals>
 | 
						|
                                    <goal>generate</goal>
 | 
						|
                                </goals>
 | 
						|
                            </execution>
 | 
						|
                        </executions>
 | 
						|
                        <configuration>
 | 
						|
                            <apiDocsUrl>http://localhost:8080/api-docs</apiDocsUrl>
 | 
						|
                            <outputFileName>openapi.json</outputFileName>
 | 
						|
                            <outputDir>${project.build.directory}</outputDir>
 | 
						|
                        </configuration>
 | 
						|
                    </plugin>
 | 
						|
                </plugins>
 | 
						|
            </build>
 | 
						|
        </profile>
 | 
						|
    </profiles>
 | 
						|
 | 
						|
</project> |