Add the ability to disable configuration properties in docs pom

This commit is contained in:
Ryan Baxter
2024-12-17 11:25:24 -05:00
parent 38eebd3b83
commit 0699c9c8aa
2 changed files with 15 additions and 1 deletions

View File

@@ -40,6 +40,20 @@
<sourceDirectory>src/main/asciidoc</sourceDirectory>
</build>
<profiles>
<profile>
<id>enable-configuration-properties</id>
<activation>
<property>
<name>!disableConfigurationProperties</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>docs</id>
<build>