Skip to content

Commit a21b750

Browse files
author
James Hagborg
committed
Set up publishing to bintray
1 parent f8f84a2 commit a21b750

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
id 'fr.brouillard.oss.gradle.jgitver' version '0.4.1'
3+
id 'com.jfrog.bintray' version '1.8.4'
34
id 'java'
45
id 'checkstyle'
56
id 'maven-publish'
@@ -107,6 +108,18 @@ publishing {
107108
}
108109
}
109110

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+
}
110123

111124
// By default, checkstyle wants to look at tests
112125
// we override to only look at the main code

0 commit comments

Comments
 (0)