You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I was trying to build projlib with the following parameter:
<bw.hide.library.resources>true</bw.hide.library.resources>
During this operation i have found that buildlibrary.exe is executed without -a <alias.path> parameter. This causes that all depended projlibs are always skipped in buildlibrary process.
Diff this two classes:
src/main/java/fr/fastconnect/factory/tibco/bw/maven/compile/CompileProjlibMojo.java
src/main/java/fr/fastconnect/factory/tibco/bw/maven/compile/CompileEARMojo.java
Missing lines in buildProjlib method:
File aliasesFile = new File(directory, ALIASES_FILE);
if (aliasesFile.exists()) {
arguments.add("-a");
arguments.add(aliasesFile.getAbsolutePath());
}
Regards,
Mikołaj
The text was updated successfully, but these errors were encountered:
Hi,
I was trying to build projlib with the following parameter:
<bw.hide.library.resources>true</bw.hide.library.resources>
During this operation i have found that buildlibrary.exe is executed without -a <alias.path> parameter. This causes that all depended projlibs are always skipped in buildlibrary process.
Diff this two classes:
src/main/java/fr/fastconnect/factory/tibco/bw/maven/compile/CompileProjlibMojo.java
src/main/java/fr/fastconnect/factory/tibco/bw/maven/compile/CompileEARMojo.java
Missing lines in buildProjlib method:
File aliasesFile = new File(directory, ALIASES_FILE);
if (aliasesFile.exists()) {
arguments.add("-a");
arguments.add(aliasesFile.getAbsolutePath());
}
Regards,
Mikołaj
The text was updated successfully, but these errors were encountered: