Skip to content

Commit 69a969d

Browse files
committed
chore: add 'Automatic-Module-Name' property in jar manifest
1 parent 2c4dd7a commit 69a969d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ repositories {
3434
mavenCentral()
3535
}
3636

37+
tasks.named('jar') {
38+
manifest {
39+
attributes('Automatic-Module-Name': 'com.google.maps')
40+
}
41+
}
42+
3743
task javadocJar(type: Jar, dependsOn: javadoc) {
3844
classifier = 'javadoc'
3945
from 'build/docs/javadoc'

0 commit comments

Comments
 (0)