I need to schedule a jenkins job each 15 minutes.
Currently i'm using the Build periodically
feature but that enables me to schedule the job once in 1 hour maximum.
What i got now is:
15 * * * *
is running the job HOURLY (each XX:15)
15 0 * * *
is running the job DAILY on 00:15
What is the right cron-expression that will run the job every 15 minutes?