Skip to content

Commit

Permalink
fix: resource excluding change ** to **/*.java
Browse files Browse the repository at this point in the history
  • Loading branch information
qxo authored and HannesWell committed Feb 3, 2024
1 parent 3aa12f5 commit edfc716
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ private void addResourceFolder(IClasspathDescriptor classpath, IPath resourceFol
boolean addTestFlag) {
log.info("Adding resource folder " + resourceFolder);
IClasspathEntryDescriptor descriptor = classpath.addSourceEntry(resourceFolder, outputPath, DEFAULT_INCLUSIONS,
new IPath[] {IPath.fromOSString("**")}, false /*optional*/);
new IPath[] {IPath.fromOSString("**/*.java")}, false /*optional*/);
descriptor.setClasspathAttribute(IClasspathManager.TEST_ATTRIBUTE, addTestFlag ? "true" : null);
descriptor.setClasspathAttribute(IClasspathAttribute.OPTIONAL, "true"); //$NON-NLS-1$
}
Expand Down

0 comments on commit edfc716

Please sign in to comment.