├── .gitignore ├── README.md ├── pom.xml └── src ├── build └── eclipse-java-google-style.xml ├── it ├── it-parent │ └── pom.xml ├── it0001 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── wix │ │ │ ├── FoobarAppl10.exe │ │ │ ├── Helper.dll │ │ │ ├── Manual.pdf │ │ │ └── SampleFirst.wxs │ └── verify.bsh ├── it0002 │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ └── verify.bsh ├── it0003 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── wix-locale │ │ │ ├── FoobarAppl10.exe │ │ │ ├── Helper.dll │ │ │ └── Manual.pdf │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ └── verify.bsh ├── it0004 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── wix-locale │ │ │ ├── FoobarAppl10.exe │ │ │ ├── Helper.dll │ │ │ └── Manual.pdf │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ └── verify.bsh ├── it0005 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ └── verify.bsh ├── it0010-multi-module-installer │ ├── msi │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── wix-locale │ │ │ ├── FoobarAppl.exe │ │ │ ├── Helper.dll │ │ │ ├── Manual.pdf │ │ │ ├── de-DE │ │ │ │ └── Local.dll │ │ │ └── en-US │ │ │ │ └── Local.dll │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ ├── msiBundle │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── wix │ │ │ └── bundle.wxs │ ├── pom.xml │ ├── verify.bsh │ └── wixlib │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── wix-locale │ │ ├── de-DE │ │ │ ├── Product.wxl │ │ │ ├── UI.wxl │ │ │ └── banner.bmp │ │ ├── dialog.bmp │ │ └── en-US │ │ │ ├── Product.wxl │ │ │ ├── UI.wxl │ │ │ └── banner.bmp │ │ └── wix │ │ ├── Library.wxs │ │ └── UI.wxs ├── it0011-multi-module-patch │ ├── msi │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── wix-locale │ │ │ ├── FoobarAppl.exe │ │ │ ├── Helper.dll │ │ │ ├── Manual.pdf │ │ │ ├── de-DE │ │ │ │ └── Local.dll │ │ │ └── en-US │ │ │ │ └── Local.dll │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ ├── msp │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── wix │ │ │ └── Patch.wxs │ ├── mspBundle │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── wix │ │ │ └── bundle.wxs │ ├── pom.xml │ └── verify.bsh ├── it0012-multi-module-major-patch │ ├── msi │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── wix-locale │ │ │ ├── FoobarAppl.exe │ │ │ ├── Helper.dll │ │ │ ├── Manual.pdf │ │ │ ├── de-DE │ │ │ │ └── Local.dll │ │ │ └── en-US │ │ │ │ └── Local.dll │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ ├── msiBundle │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── wix │ │ │ └── bundle.wxs │ ├── msp │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── wix │ │ │ └── Patch.wxs │ ├── mspBundle │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── wix │ │ │ └── bundle.wxs │ ├── pom.xml │ └── verify.bsh ├── it0020-harvest │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── heat │ │ │ └── dir │ │ │ │ └── helpers │ │ │ │ └── Helper.dll │ │ │ └── wix │ │ │ ├── FoobarAppl10.exe │ │ │ ├── Manual.pdf │ │ │ └── SampleFirst.wxs │ └── verify.bsh ├── it0030-classifiers │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── wix │ │ │ └── SampleFirst.wxs │ └── verify.bsh └── settings.xml ├── main ├── java │ └── com │ │ └── github │ │ └── wix_maven │ │ ├── AbstractCompilerMojo.java │ │ ├── AbstractInsigniaMojo.java │ │ ├── AbstractLinker.java │ │ ├── AbstractPackageable.java │ │ ├── AbstractTorchMojo.java │ │ ├── AbstractWixMojo.java │ │ ├── ArtifactItem.java │ │ ├── AttachBundleEngineMojo.java │ │ ├── CandleMojo.java │ │ ├── DetachBundleEngineMojo.java │ │ ├── HarvestMojo.java │ │ ├── InscribeMojo.java │ │ ├── LightMojo.java │ │ ├── LitMojo.java │ │ ├── PackageMojo.java │ │ ├── PatchMojo.java │ │ ├── PreparePackageMojo.java │ │ ├── SmokeMojo.java │ │ ├── ToolsetMojo.java │ │ ├── TransformMojo.java │ │ ├── UnpackDependenciesMojo.java │ │ ├── ValidateMojo.java │ │ ├── WixInfo.java │ │ └── WixprojMojo.java └── resources │ └── META-INF │ ├── m2e │ └── lifecycle-mapping-metadata.xml │ └── plexus │ └── components.xml └── site ├── apt ├── index.apt └── usage │ ├── candle.apt │ ├── index.apt │ └── light.apt └── site.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/build/eclipse-java-google-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/build/eclipse-java-google-style.xml -------------------------------------------------------------------------------- /src/it/it-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it-parent/pom.xml -------------------------------------------------------------------------------- /src/it/it0001/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0001/pom.xml -------------------------------------------------------------------------------- /src/it/it0001/src/main/wix/FoobarAppl10.exe: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0001/src/main/wix/Helper.dll: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0001/src/main/wix/Manual.pdf: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/it/it0001/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0001/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0001/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0001/verify.bsh -------------------------------------------------------------------------------- /src/it/it0002/invoker.properties: -------------------------------------------------------------------------------- 1 | 2 | invoker.buildResult=failure -------------------------------------------------------------------------------- /src/it/it0002/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0002/pom.xml -------------------------------------------------------------------------------- /src/it/it0002/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0002/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0002/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0002/verify.bsh -------------------------------------------------------------------------------- /src/it/it0003/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0003/pom.xml -------------------------------------------------------------------------------- /src/it/it0003/src/main/wix-locale/FoobarAppl10.exe: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0003/src/main/wix-locale/Helper.dll: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0003/src/main/wix-locale/Manual.pdf: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/it/it0003/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0003/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0003/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0003/verify.bsh -------------------------------------------------------------------------------- /src/it/it0004/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0004/pom.xml -------------------------------------------------------------------------------- /src/it/it0004/src/main/wix-locale/FoobarAppl10.exe: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0004/src/main/wix-locale/Helper.dll: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0004/src/main/wix-locale/Manual.pdf: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/it/it0004/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0004/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0004/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0004/verify.bsh -------------------------------------------------------------------------------- /src/it/it0005/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0005/pom.xml -------------------------------------------------------------------------------- /src/it/it0005/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0005/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0005/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0005/verify.bsh -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msi/pom.xml -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msi/src/main/wix-locale/FoobarAppl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msi/src/main/wix-locale/FoobarAppl.exe -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msi/src/main/wix-locale/Helper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msi/src/main/wix-locale/Helper.dll -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msi/src/main/wix-locale/Manual.pdf: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msi/src/main/wix-locale/de-DE/Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msi/src/main/wix-locale/de-DE/Local.dll -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msi/src/main/wix-locale/en-US/Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msi/src/main/wix-locale/en-US/Local.dll -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msi/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msi/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msiBundle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msiBundle/pom.xml -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/msiBundle/src/main/wix/bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/msiBundle/src/main/wix/bundle.wxs -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/pom.xml -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/verify.bsh -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/pom.xml -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/de-DE/Product.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/de-DE/Product.wxl -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/de-DE/UI.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/de-DE/UI.wxl -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/de-DE/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/de-DE/banner.bmp -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/dialog.bmp -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/en-US/Product.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/en-US/Product.wxl -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/en-US/UI.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/en-US/UI.wxl -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/en-US/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix-locale/en-US/banner.bmp -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix/Library.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix/Library.wxs -------------------------------------------------------------------------------- /src/it/it0010-multi-module-installer/wixlib/src/main/wix/UI.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0010-multi-module-installer/wixlib/src/main/wix/UI.wxs -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msi/pom.xml -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msi/src/main/wix-locale/FoobarAppl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msi/src/main/wix-locale/FoobarAppl.exe -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msi/src/main/wix-locale/Helper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msi/src/main/wix-locale/Helper.dll -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msi/src/main/wix-locale/Manual.pdf: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msi/src/main/wix-locale/de-DE/Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msi/src/main/wix-locale/de-DE/Local.dll -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msi/src/main/wix-locale/en-US/Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msi/src/main/wix-locale/en-US/Local.dll -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msi/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msi/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msp/pom.xml -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/msp/src/main/wix/Patch.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/msp/src/main/wix/Patch.wxs -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/mspBundle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/mspBundle/pom.xml -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/mspBundle/src/main/wix/bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/mspBundle/src/main/wix/bundle.wxs -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/pom.xml -------------------------------------------------------------------------------- /src/it/it0011-multi-module-patch/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0011-multi-module-patch/verify.bsh -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msi/pom.xml -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/FoobarAppl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/FoobarAppl.exe -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/Helper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/Helper.dll -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/Manual.pdf: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/de-DE/Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/de-DE/Local.dll -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/en-US/Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msi/src/main/wix-locale/en-US/Local.dll -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msi/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msi/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msiBundle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msiBundle/pom.xml -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msiBundle/src/main/wix/bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msiBundle/src/main/wix/bundle.wxs -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msp/pom.xml -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/msp/src/main/wix/Patch.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/msp/src/main/wix/Patch.wxs -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/mspBundle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/mspBundle/pom.xml -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/mspBundle/src/main/wix/bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/mspBundle/src/main/wix/bundle.wxs -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/pom.xml -------------------------------------------------------------------------------- /src/it/it0012-multi-module-major-patch/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0012-multi-module-major-patch/verify.bsh -------------------------------------------------------------------------------- /src/it/it0020-harvest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0020-harvest/pom.xml -------------------------------------------------------------------------------- /src/it/it0020-harvest/src/main/heat/dir/helpers/Helper.dll: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0020-harvest/src/main/wix/FoobarAppl10.exe: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /src/it/it0020-harvest/src/main/wix/Manual.pdf: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/it/it0020-harvest/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0020-harvest/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0020-harvest/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0020-harvest/verify.bsh -------------------------------------------------------------------------------- /src/it/it0030-classifiers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0030-classifiers/pom.xml -------------------------------------------------------------------------------- /src/it/it0030-classifiers/src/main/wix/SampleFirst.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0030-classifiers/src/main/wix/SampleFirst.wxs -------------------------------------------------------------------------------- /src/it/it0030-classifiers/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/it0030-classifiers/verify.bsh -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/AbstractCompilerMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/AbstractCompilerMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/AbstractInsigniaMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/AbstractInsigniaMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/AbstractLinker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/AbstractLinker.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/AbstractPackageable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/AbstractPackageable.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/AbstractTorchMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/AbstractTorchMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/AbstractWixMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/AbstractWixMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/ArtifactItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/ArtifactItem.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/AttachBundleEngineMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/AttachBundleEngineMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/CandleMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/CandleMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/DetachBundleEngineMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/DetachBundleEngineMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/HarvestMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/HarvestMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/InscribeMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/InscribeMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/LightMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/LightMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/LitMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/LitMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/PackageMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/PackageMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/PatchMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/PatchMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/PreparePackageMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/PreparePackageMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/SmokeMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/SmokeMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/ToolsetMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/ToolsetMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/TransformMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/TransformMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/UnpackDependenciesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/UnpackDependenciesMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/ValidateMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/ValidateMojo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/WixInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/WixInfo.java -------------------------------------------------------------------------------- /src/main/java/com/github/wix_maven/WixprojMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/java/com/github/wix_maven/WixprojMojo.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/plexus/components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/main/resources/META-INF/plexus/components.xml -------------------------------------------------------------------------------- /src/site/apt/index.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/site/apt/index.apt -------------------------------------------------------------------------------- /src/site/apt/usage/candle.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/site/apt/usage/candle.apt -------------------------------------------------------------------------------- /src/site/apt/usage/index.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/site/apt/usage/index.apt -------------------------------------------------------------------------------- /src/site/apt/usage/light.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/site/apt/usage/light.apt -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-maven/wix-maven-plugin/HEAD/src/site/site.xml --------------------------------------------------------------------------------