Skip to content

Commit

Permalink
AMBW-51527 [Maven][UT][Regression] Database related errors are gettin…
Browse files Browse the repository at this point in the history
…g thrown while running maven goal.
  • Loading branch information
pramakan-tibco committed Nov 22, 2024
1 parent a2e0ae7 commit fa01e48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private void addPluginsFromDir( File target , StringBuilder builder )
File libFolder = new File(file.getAbsolutePath().concat("/lib"));
if(libFolder.exists()){
if (libFolder.getAbsolutePath() != null && !(libFolder.getAbsolutePath().indexOf("com.tibco.bw.jdbc.datasourcefactory.datadirect") >= 0)) {
if(libFolder.isDirectory() && libFolder.list().length==0 && !hasDBJar(libFolder)){
if(libFolder.isDirectory() && !hasDBJar(libFolder)){
continue;
}
}
Expand Down

0 comments on commit fa01e48

Please sign in to comment.