Skip to content

Commit

Permalink
- fix javadoc-service naming website-service
Browse files Browse the repository at this point in the history
- added maven-resources-plugin maybe fixing woff... files
  • Loading branch information
MichiBaum committed Jul 18, 2024
1 parent 810192a commit 5747894
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion javadoc-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spring:
lifecycle:
timeout-per-shutdown-phase: 20s
application:
name: website-service
name: javadoc-service
cloud:
discovery:
client:
Expand Down
22 changes: 18 additions & 4 deletions website-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,28 @@
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>**/*.woff2</exclude>
<exclude>**/*.woff</exclude>
<exclude>**/*.eot</exclude>
<exclude>**/*.ttf</exclude>
<!-- <exclude>**/*.woff2</exclude>-->
<!-- <exclude>**/*.woff</exclude>-->
<!-- <exclude>**/*.eot</exclude>-->
<!-- <exclude>**/*.ttf</exclude>-->
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<!-- Add the following exclusions here. -->
<configuration>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>woff2</nonFilteredFileExtension>
<nonFilteredFileExtension>woff</nonFilteredFileExtension>
<nonFilteredFileExtension>eot</nonFilteredFileExtension>
<nonFilteredFileExtension>ttf</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
Expand Down

0 comments on commit 5747894

Please sign in to comment.