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

io.quarkus.runtime.ClassPathSystemPropertyRecorder Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
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