Skip to content

Commit

Permalink
Added missing IDEA lib dir upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Aug 28, 2024
1 parent 4fe40da commit 22952cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/rife/bld/wrapper/Wrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ public void upgradeIdeaBldLibrary(File destinationDirectory, String version)
if (libraries_test.exists()) {
try {
var content = FileUtils.readString(libraries_test);
content = JAR_DIRECTORY_LIB_PROVIDED_RECURSIVE_PATTERN.matcher(content).replaceAll("<jarDirectory url=\"file://\\$PROJECT_DIR\\$/lib/provided\" recursive=\"true\"");
content = JAR_DIRECTORY_LIB_TEST_RECURSIVE_PATTERN.matcher(content).replaceAll("<jarDirectory url=\"file://\\$PROJECT_DIR\\$/lib/test\" recursive=\"true\"");
FileUtils.writeString(content, libraries_test);
} catch (FileUtilsErrorException e) {
Expand Down

0 comments on commit 22952cf

Please sign in to comment.