Skip to content

Commit

Permalink
Changelog + version for 7.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peterebden committed Apr 21, 2017
1 parent be7bffc commit 57a559f
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 7.10.0
--------------

* Add support for classifiers on `maven_jar`.


Version 7.9.2
-------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.9.2
7.10.0
33 changes: 33 additions & 0 deletions docs/lexicon.html
Original file line number Diff line number Diff line change
Expand Up @@ -1895,6 +1895,39 @@ <h3><a name="maven_jar">maven_jar</a></h3>
<td>Attempt to download a native jar (i.e. add "-linux-x86_64" or "-osx-x86_64" etc to the URL).</td>
</tr>

<tr>
<td>artifact_type</td>
<td>jar</td>
<td>str</td>
<td>The type of artifact to download. Defaults to <code>.jar</code> but could also be
<code>.aar</code>, for example.</td>
</tr>

<tr>
<td>binary</td>
<td>False</td>
<td>bool</td>
<td>If True, we attempt to fetch and download an executable binary. The output
is marked as such. Implies <code>native = True</code> and <code>sources = False</code>.</td>
</tr>

<tr>
<td>classifier</td>
<td></td>
<td>str</td>
<td>Maven classifier, allows to distinguish artifacts that were built from
the same POM but differ in their content.</td>
</tr>

<tr>
<td>classifier_sources_override</td>
<td></td>
<td>str</td>
<td>Allows to override the classifier used to fetch the
source artifact.
e.g. logback-core-1.1.3-tests.jar and logback-core-1.1.3-test-sources.jar</td>
</tr>

</tbody>
</table>

Expand Down

0 comments on commit 57a559f

Please sign in to comment.