Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix file extension for references to application.yml #1958

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<directory>./src/main/resources</directory>
<outputDirectory>config</outputDirectory>
<includes>
<include>application.yaml</include>
<include>application.yml</include>
</includes>
<filtered>true</filtered>
</fileSet>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@
<directory>src/main/resources</directory>
<targetPath>WEB-INF/classes</targetPath>
<includes>
<include>application.yaml</include>
<include>application.yml</include>
</includes>
</webResource>
<webResource>
Expand All @@ -395,7 +395,7 @@
<includes>
<include>*/**</include>
</includes>
<exclude>application.yaml</exclude>
<exclude>application.yml</exclude>
</webResource>
<webResource>
<directory>dist</directory>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/.gitkeep
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# keep config directory for deployment override of application.yaml
# keep config directory for deployment override of application.yml
Loading