pomOnly()在.sbt文件中做了什么?

时间:2017-08-10 08:35:10

标签: scala maven sbt pom.xml

pomOnly()在.sbt文件中做了什么?

例如,

"com.github.fommil.netlib" % "all" % "1.0" pomOnly()

1 个答案:

答案 0 :(得分:11)

事实上,SBT参考指南似乎没有提供有关pomOnly()的详细信息。

根据mvnrepository,依赖" com.github.fommil.netlib:all"对应于聚合pom.xml:

<dependency>
  <groupId>com.github.fommil.netlib</groupId>
  <artifactId>all</artifactId>
  <version>1.0</version>
  <type>pom</type>
</dependency>

pomOnly()build.sbt的调用向依赖关系管理处理程序表明它们不应该为此依赖项查找jar库/工件,而只是从聚合pom加载元数据。