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
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ sourceSets {
srcDir 'src/main/resources'
include '**/*.pm'
include '**/*.pl'
include '**/*.pod'
include 'bin/**'
include 'META-INF/services/**'
}
Expand All @@ -341,6 +342,7 @@ sourceSets {
tasks.named('processResources', Copy) {
from(sourceSets.main.resources.srcDirs) {
include '**/*.pm'
include '**/*.pod'
include 'bin/**'
include 'META-INF/services/**'
}
Expand Down
6 changes: 6 additions & 0 deletions dev/import-perl5/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,12 @@ imports:
target: perl5_t/Test-Harness
type: directory

# Perl core documentation (perlfunc.pod, perlop.pod, etc.)
# Required by jperldoc for -f (function) lookups
- source: perl5/pod
target: src/main/perl/lib/pod
type: directory

# Add more imports below as needed
# Example with minimal fields:
# - source: perl5/lib/SomeModule.pm
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
<includes>
<include>**/*.pm</include>
<include>**/*.pl</include>
<include>**/*.pod</include>
<include>bin/**</include>
</includes>
</resource>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/perlonjava/core/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ public final class Configuration {
* Automatically populated by Gradle/Maven during build.
* DO NOT EDIT MANUALLY - this value is replaced at build time.
*/
public static final String gitCommitId = "93d20cfa9";
public static final String gitCommitId = "6331b9337";

/**
* Git commit date of the build (ISO format: YYYY-MM-DD).
* Automatically populated by Gradle/Maven during build.
* DO NOT EDIT MANUALLY - this value is replaced at build time.
*/
public static final String gitCommitDate = "2026-03-27";
public static final String gitCommitDate = "2026-03-28";

// Prevent instantiation
private Configuration() {
Expand Down
2 changes: 2 additions & 0 deletions src/main/perl/lib/Pod/Perldoc.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1968,6 +1968,8 @@ sub searchfor {
or ( $ret = $self->check_file("$dir/pod",$s))
or ( $ret = $self->check_file("$dir/pods","$s.pod"))
or ( $ret = $self->check_file("$dir/pods",$s))
or ( $ret = $self->check_file("$dir/Pod","$s.pod"))
or ( $ret = $self->check_file("$dir/Pod",$s))
) {
DEBUG > 1 and print " Found $ret\n";
return $ret;
Expand Down
Loading
Loading