pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>io.github.luversof</groupId>
  7. <artifactId>bluesky-boot-parent</artifactId>
  8. <version>3.2.0-SNAPSHOT</version>
  9. <relativePath>../bluesky-boot-parent</relativePath>
  10. </parent>
  11. <artifactId>bluesky-boot-docs</artifactId>
  12. <properties>
  13. <asciidoctor.outputDirectory>src/main/resources/static</asciidoctor.outputDirectory>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>io.github.luversof</groupId>
  18. <artifactId>bluesky-boot-autoconfigure</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.github.luversof</groupId>
  22. <artifactId>bluesky-boot-test-autoconfigure</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.restdocs</groupId>
  27. <artifactId>spring-restdocs-mockmvc</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.epages</groupId>
  32. <artifactId>restdocs-api-spec-mockmvc</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-rest</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. </dependencies>
  45. <profiles>
  46. <profile>
  47. <id>asciidoctor</id>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.asciidoctor</groupId>
  52. <artifactId>asciidoctor-maven-plugin</artifactId>
  53. <configuration>
  54. <attributes>
  55. <java-version>${java.version}</java-version>
  56. <spring-restdocs-version>${spring-restdocs.version}</spring-restdocs-version>
  57. <bluesky-boot-version>${bluesky-boot.version}</bluesky-boot-version>
  58. </attributes>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </profile>
  64. </profiles>
  65. </project>