forked from bacoboy/limpet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bintray.json
48 lines (40 loc) · 2.07 KB
/
.bintray.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
/* Bintray package information.
In case the package already exists on Bintray, only the name, repo and subject
fields are mandatory. */
"package": {
"name": "limpet", // Bintray package name
"repo": "limpet", // Bintray repository name
"subject": "bacoboy", // Bintray subject (user or organization)
"desc": "I was pushed completely automatically",
"website_url": "http://limpet.io",
"vcs_url": "https://github.com/bacoboy/limpet.git",
"github_use_tag_release_notes": true,
"licenses": ["MIT"],
"public_download_numbers": true,
"public_stats": true
},
/* Package version information.
In case the version already exists on Bintray, only the name fields is mandatory. */
"version": {
"name": "0.1.0",
"gpgSign": false
},
/* Configure the files you would like to upload to Bintray and their upload path.
You can define one or more groups of patterns.
Each group contains three patterns:
includePattern: Pattern in the form of Ruby regular expression, indicating the path of files to be uploaded to Bintray.
excludePattern: Optional. Pattern in the form of Ruby regular expression, indicating the path of files to be removed from the list of files specified by the includePattern.
uploadPattern: Upload path on Bintray. The path can contain symbols in the form of $1, $2,... that are replaced with capturing groups defined in the include pattern.
In the example below, the following files are uploaded,
1. All gem files located under build/bin/ (including sub directories),
except for files under a the do-not-deploy directory.
The files will be uploaded to Bintray under the gems folder.
2. All files under build/docs. The files will be uploaded to Bintray under the docs folder.
Note: Regular expressions defined as part of the includePattern property must be wrapped with brackets. */
"files":
[
{"includePattern": "target/release/limpet", "uploadPattern":"limpet"}
],
"publish": true
}