io.quarkus.jgit.runtime.JGitRuntimeConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-jgit Show documentation
Show all versions of quarkus-jgit Show documentation
Access your Git repositories
package io.quarkus.jgit.runtime;
import java.net.URI;
import java.util.Optional;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
@ConfigMapping(prefix = "quarkus.jgit")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface JGitRuntimeConfig {
/**
* Configuration for the development services.
*/
DevService devservices();
interface DevService {
/**
* The HTTP URL of the dev services. Generated once the service is up and running.
*/
Optional httpUrl();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy