/* * YUI Compressor * http://developer.yahoo.com/yui/compressor/ * Author: Julien Lecomte - http://www.julienlecomte.net/ * Copyright (c) 2011 Yahoo! Inc. All rights reserved. * The copyrights embodied in the content of this file are licensed * by Yahoo! Inc. under the BSD (revised) open source license. */ package compressor; import java.lang.reflect.Method; public class Bootstrap { public static void main(String args[]) throws Exception { ClassLoader loader = new JarClassLoader(); Thread.currentThread().setContextClassLoader(loader); Class c = loader.loadClass(YUICompressor.class.getName()); Method main = c.getMethod("main", new Class[]{String[].class}); main.invoke(null, new Object[]{args}); } }