How does the additionaldata tag work?
I have:
| ...
| <pack name="Base" required="yes">
| <description>The base files</description>
| <file src="README.txt" targetdir="$INSTALL_PATH"/>
| <file src="license/jbmail.license" targetdir="$INSTALL_PATH"/>
| <fileset dir="build/deploy/dev"
| targetdir="$INSTALL_PATH/server/$SERVER_CONFIG/deploy">
| <include name="mail.ear/**"/>
| <additionaldata key="jboss-service.xml" value="mail.ear/mail.sar/META-INF/jboss-service.xml.vm" />
| </fileset>
| <!--file src="script.bat" targetdir="$INSTALL_PATH"/-->
| <!--parsable targetfile="$INSTALL_PATH/script.bat"/--> <!-- The file will be parsed -->
| </pack>
| ...
|
| yet the .vm file has no effect (it is supposed to omit a section if smtp is not enabled)...
|
| I have the jboss listeners and crap and the JBoss izpack:
|
| <listeners>
| <listener installer="SummaryLoggerInstallerListener"/>
| <listener
| compiler="org.jboss.install.CompileListener"
| installer="org.jboss.install.PackageListener"
| jar="lib/jboss-listeners.jar"
| />
| </listeners>
|
| <jar src="src/GRAPHICAL/templates.jar" />
| <jar src="lib/velocity.jar" />
| <jar src="lib/commons-collections.jar" />
| <jar src="lib/logkit.jar" />
|
Questions:
1. Any clues on how that works? (additionaldata)
2. Where can I find the jboss install package/friends? (additionaldata in particular)
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3887197#3887197
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3887197
|