HowToCustomzieTheProjectBuilding
How to customzie the Project Building
Contributed By; Mohamed Magdy Shaheen
How To enforce NetBeans to use pre-defined Manifest file
- Open nbproject\build-impl.xml
- Replace any ${manifest.file} with the manifest file path.
How to add custom project property
- Open nbproject\project.properties
- Add the custom property if format of key, value pairs
How to enforce the NetBeans to generate .rar instead of jar file:
- Open nbproject\project.properties
- Navigate to "dist.jar" property
- Change the file extension to "rar" instead of jar.
How to move the generated jar to specific folder:
- Open nbproject\build-impl.xml
- Add the following section;
<target name="-post-jar">
<move description="Custom Deployment" file="${dist.dir}/a.jar" todir="c://server/deploy//" />
</target>

