Temenos Transact Module Generation Helper
This section describes a TAFJ tool that will help you to generate module.xml for Temenos Transact.
To generate Temenos Transact module, you need to run the command below from TAFJ_HOME/bin ModuleGenerator with arguments:
JBossTools module_name jars_path dest [root_prefix] [-tafjdep]
Where arguments are:
- module_name: Name of the JBoss module.
- jars_path: List of folder you want to parse (OS path separator between folders).
- dest : Path where you want the module.xml file to be generated.
- root_prefix: Name of the link if module.xml is at the same level of the link.
- -tafjdep: Option to add tafj module dependencies in the dependencies section.
For example on Windows platform,
ModuleGenerator.bat com.temenos.t24 C:\product\T24\DEV\lib; C:\product\T24\DEV\lib\Enterprise C:\product\AppServer\JBoss-7\jboss-eap-7\modules\com\temenos\t24\main lib –tafjdep
If you have the below folder structure,
The following command is used:
ModuleGenerator.bat com.temenos.t24 C:\product\T24\lib C:\product\AppServer\ jboss-eap-7\modules\com\temenos\t24\main lib –tafjdep
This helper will create the module.xml file in the destination path. It will not generate the module.xml dependencies section; you will have to add the correct dependencies for your module needs. After the module generation, you should copy the JARs to the JBOSS_HOME/modules/com/temenos/t24/main directory based on the location of the module.xml file.
In this topic