Example - build.properties

## This is an example property file for values local to your build environment.
## Copy this file to build.properties, change the values to your needs but
## DO NOT commit this file into you project!
## This file should be ignored by your .gitignore file.
## All path specifications use a forward slash ("/") even on windows!
## For example C:/omw/FRHome/


## db.userid in the form user/passwd@tns_alias
#db.userid=scott/tiger@mydb


## If this is not set in project.properties, set it here
## Full Path of oformsci.jar
#lib.oformsci=oformsci/lib/oformsci.jar


## The ORACLE_HOME of your Forms installation
#oracle.home=C:/omw/FRHome


## The ORACLE_INSTANCE of your Forms installation
#oracle.instance=C:/omw/FRInstance


## If Forms Compiler is on search path, just the filename should work
## otherwise provide with full path (for example if the build should work in Jenkins on Linux).
## Windows Forms Compiler:
#forms.compiler=frmcmp.exe
## Linux Forms Compiler:
#forms.compiler=frmcmp_batch


## the default FORMS_PATH is build from 
## $ORACLE_HOME/forms;$ORACLE_INSTANCE/FormsComponent/forms
## Do not add your forms directory here!
#default.forms_path=C:/omw/FRHome/forms;C:/omw/FRInstance/FormsComponent/forms


## If Reports Compiler is on search path, just the filename should work
## otherwise provide with full path (for example if the build should work in Jenkins on Linux).
## Windows Reports Compiler:
#reports.compiler=rwconverter.exe
## Linux Reports Compiler (you should use the one in $ORACLE_INSTANCE/config/reports/bin/rwconverter.sh):
#reports.compiler=rwconverter.sh


## NLS_LANG
# on Unix (Depending on system settings) for example
#nls.lang=GERMAN_GERMANY.WE8ISO8859P1
#nls.lang=GERMAN_GERMANY.WE8ISO8859P15
#nls.lang=GERMAN_GERMANY.UTF8
# on Windows for example
#nls.lang=GERMAN_GERMANY.WE8MSWIN1252


## Full path to git executable if it is not on search path.
## Set only if git is not found by the build script.
#git.executable=/usr/local/bin/git

## Full path to sqlplus executable if it is not on search path.
## Set only if sqlplus is not found by the build script.
#sqlplus.executable=/opt/middleware/FRHome/bin/sqlplus



## Parameters for jar signing
## =============================================================================

## you can get the alias of your key in the keystore with the following command
## keytool -list -keystore mykeystore.jks

## Example on Unix :
#sign.keystore = /home/someuser/codesigning/mykeystore.jks
## Example on Windows:
#sign.keystore = C:/users/myUserName/Documents/mykeystore.jks
#sign.keystoretype = jks
#sign.keyalias = 1
#sign.keystore.passwd = myspecialsecret


## This is one of the public available timestamp servers you can use:
sign.tsaurl = https://timestamp.geotrust.com/tsa
## for more information see:
## https://blogs.oracle.com/java-platform-group/entry/code_signing_understanding_who_and


## change the host and port part of the following proxy settings
## use either http.proxy... or https.proxy... depending on the 
## choosen sign.tsaurl.

#sign.proxy.host.setting = -J-Dhttp.proxyHost=my.proxyhost.local
#sign.proxy.port.setting = -J-Dhttp.proxyPort=8080

#sign.proxy.host.setting = -J-Dhttps.proxyHost=my.proxyhost.local
#sign.proxy.port.setting = -J-Dhttps.proxyPort=8080

## if you don't need a proxy you can set the settings to an empty string
#sign.proxy.host.setting = ""
#sign.proxy.port.setting = ""