Skip to content
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
17 changes: 16 additions & 1 deletion openam-server-only/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2011-2016 ForgeRock AS.
* Portions copyright 2017-2025 3A Systems, LLC
* Portions copyright 2017-2026 3A Systems, LLC

-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Expand Down Expand Up @@ -255,6 +255,10 @@
<nonFilteredFileExtension>woff2</nonFilteredFileExtension>
<nonFilteredFileExtension>woff</nonFilteredFileExtension>
<nonFilteredFileExtension>ttf</nonFilteredFileExtension>
<nonFilteredFileExtension>eot</nonFilteredFileExtension>
<nonFilteredFileExtension>svg</nonFilteredFileExtension>
<nonFilteredFileExtension>otf</nonFilteredFileExtension>
<nonFilteredFileExtension>db</nonFilteredFileExtension>
<!-- See: http://en.wikipedia.org/wiki/List_of_file_formats -->
</nonFilteredFileExtensions>
<webResources>
Expand Down Expand Up @@ -291,6 +295,8 @@
<exclude>META-INF</exclude>
<exclude>WEB-INF</exclude>
<exclude>com_sun_web_ui/images</exclude>
<!-- JavaHelp search index files are binary; do not filter -->
<exclude>**/JavaHelpSearch/**</exclude>
</excludes>
<targetPath />
<filtering>true</filtering>
Expand All @@ -303,6 +309,15 @@
<targetPath>com_sun_web_ui/images</targetPath>
<filtering>false</filtering>
</webResource>
<!-- New: copy JavaHelp search indexes WITHOUT filtering -->
<webResource>
<directory>${basedir}/src/main/webapp</directory>
<includes>
<include>**/JavaHelpSearch/**</include>
</includes>
<targetPath />
<filtering>false</filtering>
</webResource>
<webResource>
<directory>${project.basedir}/src/main/webapp/WEB-INF</directory>
<includes>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2165,7 +2165,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.3</version>
<version>3.5.1</version>
</plugin>

<plugin>
Expand Down
Loading