Package ca.carleton.gcrc.javascript

Examples of ca.carleton.gcrc.javascript.LibraryConfiguration


    ,String libraryName
    ,String debugLibraryName
    ) throws Exception {
   
    try {
      LibraryConfiguration config = new LibraryConfiguration();
      config.setLicenseFile(licenseFile);
      config.setSourceDirectory(sourceDirectory);
      config.parseConfiguration(configFile);

      // Create minimized version
      {
        CompressProcess compressProcess = new CompressProcess();
        compressProcess.generate(config, new File(sourceDirectory, libraryName));
View Full Code Here


    ,String libraryName
    ,String debugLibraryName
    ) throws Exception {
   
    try {
      LibraryConfiguration config = new LibraryConfiguration();
      config.setLicenseFile(licenseFile);
      config.setSourceDirectory(sourceDirectory);
      config.parseConfiguration(configFile);

      // Create minimized version
      {
        CompressProcess compressProcess = new CompressProcess();
        compressProcess.generate(config, new File(sourceDirectory, libraryName));
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.javascript.LibraryConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.