Dependency in build.gradle

Im using javax.mail plugin for my katalon tests and now I want to create plugins for the custom keywords.
How can I add javax.mail in build.gradle?

@devalex88 Could you please check this?

Open build.gradle with a text editor.
Add following lines to dependencies { }:

// https://mvnrepository.com/artifact/javax.mail/mail
compile group: 'javax.mail', name: 'mail', version: '1.4.1'