io.quarkus.runtime.ClassPathSystemPropertyRecorder Maven / Gradle / Ivy
package io.quarkus.runtime;
import java.util.List;
import io.quarkus.runtime.annotations.Recorder;
@Recorder
public class ClassPathSystemPropertyRecorder {
public void set(List allJarPaths) {
System.setProperty("java.class.path", String.join(":", allJarPaths));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy