ShireQL 查询制品信息

Maven 示例

---
variables:
  "mavenDependencies": {
    from {
        ProjectDependency dependency
    }
    where {
        dependency.groupId == "org.springframework.boot" and dependency.artifactId == "spring-boot-starter-web"
    }
    select {
        dependency.groupId, dependency.artifactId, dependency.version
    }
  }
---