Fix spelling error.

waywardmonkeys 2011-12-01 07:25:58 -08:00
parent 0517afffe4
commit 4a6b8d0027
1 changed files with 2 additions and 2 deletions

@ -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")