Skip to content

Commit 6691e62

Browse files
committed
[Java] Use sbeVersion directly for manifests to avoid embedding in a string.
1 parent 93e959d commit 6691e62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ project(':sbe-tool') {
246246
'Specification-Title': 'Simple Binary Encoding',
247247
'Specification-Version': '1.0',
248248
'Implementation-Title': 'SBE',
249-
'Implementation-Version': "${sbeVersion}",
249+
'Implementation-Version': sbeVersion,
250250
'Implementation-Vendor': 'Real Logic Limited',
251251
'Automatic-Module-Name': 'uk.co.real_logic.sbe.tool'
252252
)
@@ -305,7 +305,7 @@ project(':sbe-all') {
305305
'Specification-Title': 'Simple Binary Encoding',
306306
'Specification-Version': '1.0',
307307
'Implementation-Title': 'SBE',
308-
'Implementation-Version': "${sbeVersion}",
308+
'Implementation-Version': sbeVersion,
309309
'Implementation-Vendor': 'Real Logic Limited',
310310
'Automatic-Module-Name': 'uk.co.real_logic.sbe.all'
311311
)
@@ -418,7 +418,7 @@ project(':sbe-samples') {
418418
'Specification-Title': 'Simple Binary Encoding',
419419
'Specification-Version': '1.0',
420420
'Implementation-Title': 'SBE',
421-
'Implementation-Version': "${sbeVersion}",
421+
'Implementation-Version': sbeVersion,
422422
'Implementation-Vendor': 'Real Logic Limited',
423423
'Automatic-Module-Name': 'uk.co.real_logic.sbe.samples'
424424
)

0 commit comments

Comments
 (0)