Skip to content

Commit dfd6b83

Browse files
committed
Test release description #try 14
1 parent b34c0e0 commit dfd6b83

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
@@ -36,6 +36,8 @@ subprojects {
3636
}
3737

3838
if (!(project.name in ['shared'])) {
39+
apply plugin: 'maven-publish'
40+
3941
dependencies {
4042
implementation project(':shared')
4143
}
@@ -45,6 +47,17 @@ subprojects {
4547
archiveVersion.set(version)
4648
destinationDirectory.set(file("$rootDir/build/libs"))
4749
}
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+
}
4861
}
4962

5063
}

0 commit comments

Comments
 (0)