12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <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>io.github.luversof</groupId>
- <artifactId>bluesky-boot-parent</artifactId>
- <version>3.2.0-SNAPSHOT</version>
- <relativePath>../bluesky-boot-parent</relativePath>
- </parent>
- <artifactId>bluesky-boot-docs</artifactId>
- <properties>
- <asciidoctor.outputDirectory>src/main/resources/static</asciidoctor.outputDirectory>
- </properties>
- <dependencies>
- <dependency>
- <groupId>io.github.luversof</groupId>
- <artifactId>bluesky-boot-autoconfigure</artifactId>
- </dependency>
- <dependency>
- <groupId>io.github.luversof</groupId>
- <artifactId>bluesky-boot-test-autoconfigure</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.restdocs</groupId>
- <artifactId>spring-restdocs-mockmvc</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.epages</groupId>
- <artifactId>restdocs-api-spec-mockmvc</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-rest</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>asciidoctor</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.asciidoctor</groupId>
- <artifactId>asciidoctor-maven-plugin</artifactId>
- <configuration>
- <attributes>
- <java-version>${java.version}</java-version>
- <spring-restdocs-version>${spring-restdocs.version}</spring-restdocs-version>
- <bluesky-boot-version>${bluesky-boot.version}</bluesky-boot-version>
- </attributes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|