We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b34c0e0 commit dfd6b83Copy full SHA for dfd6b83
1 file changed
build.gradle
@@ -36,6 +36,8 @@ subprojects {
36
}
37
38
if (!(project.name in ['shared'])) {
39
+ apply plugin: 'maven-publish'
40
+
41
dependencies {
42
implementation project(':shared')
43
@@ -45,6 +47,17 @@ subprojects {
45
47
archiveVersion.set(version)
46
48
destinationDirectory.set(file("$rootDir/build/libs"))
49
50
51
+ publishing {
52
+ publications {
53
+ maven(MavenPublication) {
54
+ groupId project.group
55
+ artifactId project.name
56
+ version project.version
57
+ from components.java
58
+ }
59
60
61
62
63
0 commit comments