Skip to content

Commit fb94e9c

Browse files
author
Pascal Wink
committed
Add maven-publish configuration to support JitPack builds
1 parent e645027 commit fb94e9c

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.bunq.sdk'
2-
version '1.28.0.2'
2+
version '1.28.0.3'
33

44
apply plugin: 'java'
55
apply plugin: 'maven-publish'
@@ -42,4 +42,15 @@ dependencies {
4242
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
4343
}
4444

45+
publishing {
46+
publications {
47+
create("mavenJava", MavenPublication) {
48+
from components.java
49+
groupId = 'com.bunq.sdk'
50+
artifactId = 'sdk_java'
51+
version = '1.28.0.3'
52+
}
53+
}
54+
}
55+
4556
apply plugin: 'idea'

0 commit comments

Comments
 (0)