lib/jbundler.rb in jbundler-0.2.2 vs lib/jbundler.rb in jbundler-0.3.0

- old
+ new

@@ -1,32 +1,32 @@ require 'maven/tools/jarfile' require 'jbundler/classpath_file' require 'jbundler/gemfile_lock' require 'jbundler/aether' -config = JBundler::AetherConfig.new +config = JBundler::Config.new jarfile = Maven::Tools::Jarfile.new(config.jarfile) if config.skip warn "skip jbundler setup" else classpath_file = JBundler::ClasspathFile.new(config.classpath_file) - gemfile_lock = JBundler::GemfileLock.new(jarfile, config.gemfile + '.lock') + gemfile_lock = JBundler::GemfileLock.new(jarfile, config.gemfile_lock) if classpath_file.needs_update?(jarfile, gemfile_lock) aether = JBundler::AetherRuby.new(config) jarfile.populate_unlocked(aether) gemfile_lock.populate_dependencies(aether) jarfile.populate_locked(aether) aether.resolve - classpath_file.generate(aether.classpath) + classpath_file.generate(aether.classpath_array) jarfile.generate_lockfile(aether.resolved_coordinates) end - if classpath_file.exists? + if classpath_file.exists? && jarfile.exists_lock? require 'java' classpath_file.require_classpath if config.verbose warn "jbundler classpath:" JBUNDLER_CLASSPATH.each do |path|