diff --git a/documentation/index.html b/documentation/index.html index 3182fb0..0b67fb8 100644 --- a/documentation/index.html +++ b/documentation/index.html @@ -855,13 +855,9 @@ Now, all you need to do is to upload your package: bintray { publish = true sign = true - autoGitTag = true }

The following configuration parameters are supported:

-
-
autoGitTag
-
When the uploadBintray task is invoked, a git tag named as the version of the - project is automatically created and pushed to the origin.
+
publish
Files uploaded to Bintray in your personal space are automatically published.
sign
@@ -869,6 +865,29 @@ Now, all you need to do is to upload your package: files to Maven Central once they're uploaded.
+

+ When the uploadBintray task is invoked, a git tag named as the version of the + project is automatically created and pushed to the origin. +

+
+    autoGitTag {
+        enabled = true
+        annotated = true
+        tag = "v$version"
+        message = "Release v$version"
+    }
+

The following configuration parameters are supported:

+
+
annotated
+
A lightweight tag is created by default. Set to true to create an annotated tag.
+
enabled
+
Auto-tagging is enabled by default. Set to false to disable.
+
tag
+
The git tag. Set to the project version by default.
+
message
+
Specifies the optional message to be stored with the tag.
+
+

Profiles

Profiles allow you to run altered versions of your build file by using command