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 f9d559f commit 8582268Copy full SHA for 8582268
build.gradle
@@ -22,6 +22,7 @@ plugins {
22
23
subprojects {
24
apply plugin: 'java-library'
25
+ apply plugin: 'maven-publish' // necessary for jitpack
26
apply plugin: 'docker-compose'
27
28
sourceCompatibility = 1.8
@@ -65,6 +66,19 @@ subprojects {
65
66
isRequiredBy integration
67
waitForTcpPortsTimeout = Duration.ofMinutes(1)
68
}
69
+
70
+ publishing { // necessary for jitpack
71
+ publications {
72
+ mavenJava(MavenPublication) {
73
+ // thanks https://stackoverflow.com/a/68515859/5434860
74
+ groupId = "${group}"
75
+ artifactId = "${project.name}"
76
+ version = "${version}"
77
78
+ from project.components.java
79
+ }
80
81
82
83
84
wrapper {
0 commit comments