Skip to content

Commit 135a1a9

Browse files
committed
Fix automatic module name for java5
1 parent c7ca7eb commit 135a1a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ configure([project(':java5'), project(':java8')]) {
4040
from sourceSets.main.output
4141
from project(':common').sourceSets.main.output
4242
manifest {
43-
attributes('Automatic-Module-Name': 'org.jetbrains.' + archivesBaseName)
43+
attributes('Automatic-Module-Name': 'org.jetbrains.' + archivesBaseName.replace('-', '_'))
4444
}
4545
}
4646

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
projectVersion=18.0.0
1+
projectVersion=19.0.0

0 commit comments

Comments
 (0)