0N/A<?xml version="1.0" encoding="UTF-8"?>
2362N/A<!--
0N/A ! CDDL HEADER START
0N/A !
0N/A ! The contents of this file are subject to the terms of the
0N/A ! Common Development and Distribution License, Version 1.0 only
0N/A ! (the "License"). You may not use this file except in compliance
0N/A ! with the License.
0N/A !
0N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
0N/A ! or http://forgerock.org/license/CDDLv1.0.html.
0N/A ! See the License for the specific language governing permissions
0N/A ! and limitations under the License.
0N/A !
0N/A ! When distributing Covered Code, include this CDDL HEADER in each
0N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
0N/A ! If applicable, add the following below this CDDL HEADER, with the
0N/A ! fields enclosed by brackets "[]" replaced with your own identifying
2362N/A ! information:
2362N/A ! Portions Copyright [yyyy] [name of copyright owner]
2362N/A !
0N/A ! CDDL HEADER END
0N/A !
0N/A !
0N/A ! Copyright 2013-2015 ForgeRock AS
0N/A ! -->
0N/A<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
0N/A <Product Id="*" Codepage="1252" Language="1033" Manufacturer="ForgeRock"
0N/A Name="ForgeRock $(var.name) $(var.major).$(var.minor)" Version="$(var.major).$(var.minor).$(var.point).0"
0N/A UpgradeCode="A3E82AC0-88E6-4DEE-9D8C-5AE3B7853274">
0N/A <Package Id="*" Comments="This package contains ForgeRock $(var.name) $(var.major).$(var.minor).$(var.point)."
0N/A Description="ForgeRock products" InstallerVersion="300" Languages="1033" Manufacturer="ForgeRock"
0N/A Platform="x86" Compressed="yes"/>
0N/A <Media Id="1" Cabinet="opendj.cab" DiskPrompt="Disk 1" EmbedCab="yes" CompressionLevel="high"/>
0N/A <Property Id="DiskPrompt" Value="ForgeRock $(var.name) $(var.major).$(var.minor).$(var.point) Installation"/>
0N/A
0N/A <Property Id="ALLUSERS" Value="1"/>
0N/A <Property Id="ARPHELPLINK" Value="http://forgerock.com"/>
0N/A
0N/A <!-- UI customization -->
0N/A <WixVariable Id="WixUIBannerBmp" Value="opendjbanner.bmp" />
0N/A <WixVariable Id="WixUIDialogBmp" Value="opendjdialog.bmp" />
0N/A
5745N/A <!-- Upgrading -->
5745N/A <MajorUpgrade DowngradeErrorMessage="A newer version of $(var.name) is already installed."/>
5745N/A
5745N/A <Directory Id="TARGETDIR" Name="SourceDir">
0N/A <Directory Id="ProgramFilesFolder" Name="PFiles">
5745N/A <Directory Id="OPENDJ" Name="$(var.name)">
5745N/A </Directory>
0N/A </Directory>
0N/A </Directory>
0N/A
0N/A <Feature Id="All" Title="Server and tools" Level="1" ConfigurableDirectory="OPENDJ">
0N/A <ComponentGroupRef Id="all"/>
0N/A </Feature>
0N/A
0N/A <!-- User interface -->
0N/A <Property Id="WIXUI_INSTALLDIR" Value="OPENDJ"/>
0N/A <UI Id="OpenDJ_Install">
0N/A <UIRef Id="WixUI_InstallDir"/>
0N/A <UIRef Id="WixUI_ErrorProgressText"/>
0N/A <!-- Don't show the license agreement in the install, just in setup -->
0N/A <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg">1</Publish>
0N/A <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish>
0N/A </UI>
0N/A </Product>
5745N/A</Wix>
0N/A