class MavenRepo

Public Class Methods

new(path) click to toggle source
# File lib/jlauncher/repos.rb, line 46
def initialize(path)
    @path = path
end

Public Instance Methods

local_path(coordinates) click to toggle source

for now we only support going for jars, thus no type or classifier or even platform here (to be honest mostly the latter may be interesting for us)

# File lib/jlauncher/repos.rb, line 52
def local_path(coordinates)
    File.join(@path, coordinates.local_maven_path)
end