1 /*2 * Created on 11-Dec-20043 *4 */5 package org.hibernate.eclipse;6 7 import org.apache.commons.logging.Log;8 import org.apache.commons.logging.LogFactory;9 import org.eclipse.core.runtime.Plugin;10 import org.osgi.framework.BundleContext;11 12 /**13 * @author max14 *15 */16 public class HibernatePlugin extends Plugin {17 18 public void start(BundleContext context) throws Exception {19 super.start(context);20 Log log = LogFactory.getLog(HibernatePlugin.class);21 log.info("HibernatePlugin Started"); 22 }23 }24