org.guvnor.common.services.project.model.Dependencies.getGavs()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(119)

本文整理了Java中org.guvnor.common.services.project.model.Dependencies.getGavs()方法的一些代码示例,展示了Dependencies.getGavs()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Dependencies.getGavs()方法的具体详情如下:
包路径:org.guvnor.common.services.project.model.Dependencies
类名称:Dependencies
方法名:getGavs

Dependencies.getGavs介绍

暂无

代码示例

代码示例来源:origin: kiegroup/appformer

public Collection<GAV> getCompileScopedGavs() {
  return getGavs("compile",
          // When scope is not declared (dependency.getScope() == null), maven considers it to be compile scope
          null
  );
}

代码示例来源:origin: org.uberfire/uberfire-project-api

public Collection<GAV> getCompileScopedGavs() {
  return getGavs("compile",
          // When scope is not declared (dependency.getScope() == null), maven considers it to be compile scope
          null
  );
}

代码示例来源:origin: kiegroup/appformer

@Test
public void testGetTestScopedGAVs() {
  final Collection<GAV> gavs = dependencies.getGavs("test");
  assertThat(gavs).hasSize(1);
  assertContains(gavs,
          "junit",
          "junit",
          "4.11");
}

代码示例来源:origin: kiegroup/appformer

@Test
public void testGetCompileScopedGAVs() {
  final Collection<GAV> gavs = dependencies.getGavs("compile");
  assertThat(gavs).hasSize(1);
  assertContains(gavs,
          "org.drools",
          "drools-core",
          "5.0");
}

代码示例来源:origin: kiegroup/appformer

@Test
public void testGetAllGAVs() {
  final Collection<GAV> gavs = dependencies.getGavs();
  assertThat(gavs.size()).isEqualTo(3);
  assertContains(gavs,
          "org.drools",
          "drools-core",
          "5.0");
  assertContains(gavs,
          "junit",
          "junit",
          "4.11");
  assertContains(gavs,
          "mygroup",
          "depWithoutScope",
          "1.0");
}

相关文章