All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fmarmar.cucumber.tools.jcommander.PathConverter Maven / Gradle / Ivy

The newest version!
package com.github.fmarmar.cucumber.tools.jcommander;

import java.nio.file.Path;

public class PathConverter extends com.beust.jcommander.converters.PathConverter {
	
	@Override
	public Path convert(String value) {
	    return super.convert(value).toAbsolutePath();
	  }
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy