mirror of https://github.com/sbt/sbt.git
Fix spelling error.
parent
0517afffe4
commit
4a6b8d0027
|
|
@ -175,13 +175,13 @@ libraryDependencies += "org.apache.felix" % "org.apache.felix.framework" % "1.8.
|
|||
|
||||
### Classifiers
|
||||
|
||||
You can specify the classifer for a dependency using the `classifier` method. For example, to get the jdk15 version of TestNG:
|
||||
You can specify the classifier for a dependency using the `classifier` method. For example, to get the jdk15 version of TestNG:
|
||||
|
||||
```scala
|
||||
libraryDependencies += "org.testng" % "testng" % "5.7" classifier "jdk15"
|
||||
```
|
||||
|
||||
To obtain particular classifiers for all dependencies transitively, run the `update-classifiers` task. By default, this resolves all artifacts with the `sources` or `javadoc` classifer. Select the classifiers to obtain by configuring the `transitive-classifiers` setting. For example, to only retrieve sources:
|
||||
To obtain particular classifiers for all dependencies transitively, run the `update-classifiers` task. By default, this resolves all artifacts with the `sources` or `javadoc` classifier. Select the classifiers to obtain by configuring the `transitive-classifiers` setting. For example, to only retrieve sources:
|
||||
|
||||
```scala
|
||||
transitiveClassifiers := Seq("sources")
|
||||
|
|
|
|||
Loading…
Reference in New Issue