We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f84a2 commit a21b750Copy full SHA for a21b750
build.gradle
@@ -1,5 +1,6 @@
1
plugins {
2
id 'fr.brouillard.oss.gradle.jgitver' version '0.4.1'
3
+ id 'com.jfrog.bintray' version '1.8.4'
4
id 'java'
5
id 'checkstyle'
6
id 'maven-publish'
@@ -107,6 +108,18 @@ publishing {
107
108
}
109
110
111
+bintray {
112
+ user = System.getenv('BINTRAY_USER')
113
+ key = System.getenv('BINTRAY_KEY')
114
+ publications = ['mavenPublication']
115
+ pkg {
116
+ repo = 'maven'
117
+ name = 'hyperlib'
118
+ userOrg = 'teamhyper'
119
+ licenses = ['GPL-3.0']
120
+ vcsUrl = 'https://github.com/teamhyper.hyperLib'
121
+ }
122
+}
123
124
// By default, checkstyle wants to look at tests
125
// we override to only look at the main code
0 commit comments