最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - How to read dependencies in Quarkus (maven) - Stack Overflow

programmeradmin1浏览0评论

I have a library, which a service can import. Among other things, this library is supposed to run a check if a quarkus-info dependency is installed on the service that is using the library.

How could I understand if a quarkus-info dependency is installed at runtime? One of the ideas I had is to run mvn quarkus:dependency-tree and read through each line if it contains "quarkus-info". Manually in cmd I can do it just fine. However, with Java code that fails -

ProcessBuilder processBuilder = new ProcessBuilder("mvn", "quarkus:dependency-tree");
processBuilder.redirectErrorStream(true);
Process process = processBuilder.start();

results in

Cannot run program "mvn": CreateProcess error=2, The system cannot find the file specified

I have a library, which a service can import. Among other things, this library is supposed to run a check if a quarkus-info dependency is installed on the service that is using the library.

How could I understand if a quarkus-info dependency is installed at runtime? One of the ideas I had is to run mvn quarkus:dependency-tree and read through each line if it contains "quarkus-info". Manually in cmd I can do it just fine. However, with Java code that fails -

ProcessBuilder processBuilder = new ProcessBuilder("mvn", "quarkus:dependency-tree");
processBuilder.redirectErrorStream(true);
Process process = processBuilder.start();

results in

Cannot run program "mvn": CreateProcess error=2, The system cannot find the file specified

Share Improve this question asked 2 days ago MinisXMinisX 3911 silver badge15 bronze badges 3
  • Just so I understand properly, the service is a Quarkus application, right? And you want your library at runtime to be able to tell you whether the quarkus-info extension is part of the service that included the library, correct? – geoand Commented yesterday
  • @geoand Yes, that is correct. Both, the library and the service are written in Quarkus. The library has a method which runs on startUp. The library is imported into the service through pom.xml. Each service uses this library, but not each service uses quarkus-info (import in pom.xml). I want this library to be able to tell if quarkus-info is used by the service or not. – MinisX Commented yesterday
  • Great, see my answer – geoand Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 1

You need to do something like the following:

public static void hasQuarkusInfo() {
   try {
      Class.forName("io.quarkus.info.BuildInfo", false, Thread.currentThread().getContextClassLoader());
   } catch(ClassNotFoundException ignored) {
      return false;
   }  
}
发布评论

评论列表(0)

  1. 暂无评论