pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2013-2019 the original author or authors.
  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. ~ https://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. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  18. xmlns="http://maven.apache.org/POM/4.0.0"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>io.awspring.cloud</groupId>
  23. <artifactId>spring-cloud-aws</artifactId>
  24. <version>2.3.0-RC2</version>
  25. </parent>
  26. <artifactId>spring-cloud-aws-docs</artifactId>
  27. <packaging>pom</packaging>
  28. <name>Spring Cloud AWS Docs</name>
  29. <description>Spring Cloud AWS Docs</description>
  30. <properties>
  31. <docs.main>spring-cloud-aws</docs.main>
  32. <main.basedir>${basedir}/..</main.basedir>
  33. <docs.whitelisted.branches>2.1.x,2.2.x,2.3.x</docs.whitelisted.branches>
  34. <configprops.inclusionPattern>cloud.aws.*|aws.*|spring.cloud.aws.*</configprops.inclusionPattern>
  35. <upload-docs-zip.phase>deploy</upload-docs-zip.phase>
  36. <generated-docs-multipage-output.dir>${project.build.directory}/generated-docs/${project.version}/reference/html</generated-docs-multipage-output.dir>
  37. <generated-docs-singlepage-output.dir>${project.build.directory}/generated-docs/${project.version}/reference/htmlsingle</generated-docs-singlepage-output.dir>
  38. <generated-docs-pdf-output.dir>${project.build.directory}/generated-docs/${project.version}/reference/pdf</generated-docs-pdf-output.dir>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>${project.groupId}</groupId>
  43. <artifactId>spring-cloud-starter-aws</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>${project.groupId}</groupId>
  47. <artifactId>spring-cloud-starter-aws-jdbc</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>${project.groupId}</groupId>
  51. <artifactId>spring-cloud-starter-aws-messaging</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>${project.groupId}</groupId>
  55. <artifactId>spring-cloud-starter-aws-parameter-store-config</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>${project.groupId}</groupId>
  59. <artifactId>spring-cloud-starter-aws-secrets-manager-config</artifactId>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <artifactId>maven-deploy-plugin</artifactId>
  66. <configuration>
  67. <skip>true</skip>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. <profiles>
  73. <profile>
  74. <id>docs</id>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>pl.project13.maven</groupId>
  79. <artifactId>git-commit-id-plugin</artifactId>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.codehaus.mojo</groupId>
  83. <artifactId>exec-maven-plugin</artifactId>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-dependency-plugin</artifactId>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-resources-plugin</artifactId>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.asciidoctor</groupId>
  95. <artifactId>asciidoctor-maven-plugin</artifactId>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-antrun-plugin</artifactId>
  100. </plugin>
  101. <plugin>
  102. <artifactId>maven-deploy-plugin</artifactId>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </profile>
  107. </profiles>
  108. </project>