Configuring Javac

Normally TICS uses the Javac compiler that is on the system path. When this is the incorect version, the path of the Javac compiler can be configured on global level in the SERVER.txt or per project in the PROJECTS.txt.

Basic configuration

Syntax

The following properties have to be declared either on SERVER or PROJECT level:

'TOOLS' => {
  'Javac' => {
    'PATH' => 'The path of the Javac compiler',
  }
}

Example:

'TOOLS' => {
  'Javac' => {
    'PATH' => 'C:/Program Files/Java/jdk1.8.0_25/bin/javac.exe',
  }
}