]
Simon Hogg updated ISPN-7689:
-----------------------------
Attachment: config-converter.bat
Invalid classpath in config-converter.bat
-----------------------------------------
Key: ISPN-7689
URL:
https://issues.jboss.org/browse/ISPN-7689
Project: Infinispan
Issue Type: Bug
Components: Configuration
Affects Versions: 9.0.0.CR4
Reporter: Simon Hogg
Attachments: config-converter.bat
The config-converter.bat distributed with infinispan-9.0.0.CR4-all.zip contains the wrong
path for the transaction api jar:
for %%i in (%ISPN_HOME%\lib\jboss-transactions-api*.jar) do call :append_to_cp %%i
this should be:
for %%i in (%ISPN_HOME%\lib\jboss-transaction-api*.jar) do call :append_to_cp %%i
(The 's' in transactions should be removed.)