1 2 18 19 22 package org.quartz.helpers; 23 24 import org.quartz.core.QuartzScheduler; 25 26 33 public class VersionPrinter { 34 35 38 private VersionPrinter() { 39 } 40 41 48 49 public static void main(String [] args) { 50 System.out.println("Quartz version: " + QuartzScheduler.getVersionMajor() 51 + "." + QuartzScheduler.getVersionMinor() + "." 52 + QuartzScheduler.getVersionIteration()); 53 } 54 } 55 | Popular Tags |