We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ae7b08 commit 321caf6Copy full SHA for 321caf6
1 file changed
build.gradle
@@ -1,7 +1,9 @@
1
plugins {
2
id "java"
3
id "jacoco"
4
+ id 'maven-publish'
5
id 'com.github.kt3k.coveralls' version '2.6.3'
6
+ id "com.jfrog.bintray" version "1.7"
7
}
8
9
repositories {
@@ -11,7 +13,7 @@ repositories {
11
13
12
14
15
group = 'com.github.markrileybot.heatshrink'
-version = '1.0.0-SNAPSHOT'
16
+version = '0.0.1'
17
18
dependencies {
19
compile 'org.slf4j:slf4j-api:1.7.21'
@@ -26,3 +28,23 @@ jacocoTestReport {
26
28
html.enabled = true
27
29
30
31
+
32
+publishing {
33
+ publications {
34
+ MyPublication(MavenPublication) {
35
+ from components.java
36
+ }
37
38
+}
39
40
+bintray {
41
+ user = 'markrileybot'
42
+ key = System.getenv('BINTRAY_KEY')
43
+ publications = ['MyPublication']
44
+ pkg {
45
+ repo = 'markrileybot'
46
+ name = project.name
47
+ userOrg = 'mrileybot'
48
49
50
0 commit comments