----- Light Mojo Usage ----- Light Mojo Usage Brief examples on how to use the light goal. * The <<>> mojo If you want to convert a single WiX Object (.wixobj) file into a MSI (.msi) file, use this configuration in your pom: +---+ ... npanday.plugin npanday-wix-plugin 1.0-SNAPSHOT Sample.wixobj ... ... +---+ By default the .msi file will have the same name as the single .wixobj file. Generally this will be done in a separate module with pom packaging. If you want to convert multiple WiX Object (.wixobj) files into a MSI (.msi) file, use this configuration in your pom: +---+ ... npanday.plugin wix-maven-plugin 1.0-SNAPSHOT Sample.wixobj Another.wixobj SampleInstaller.msi ... ... +---+ Because there is more than one object file, the outputFile parameter is required to tell WiX what to name the .msi file. If you have used the outputDirectory parameter for the candle goal, you may need to include the location of the WiX object files: +-----+ npanday.plugin wix-maven-plugin 1.0-SNAPSHOT target/IT005.wixobj target/IT005.msi wix light +-----+ It is always a good idea to put generated files under the 'target' directory so that they are cleaned up properly.