Skip to content

Commit

Permalink
chore: fix incorrect version in MANIFEST.MF
Browse files Browse the repository at this point in the history
  • Loading branch information
Fiouz authored and remkop committed Feb 20, 2021
1 parent e5bce48 commit 5d0848f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,10 @@ jar {
manifest {
attributes 'Specification-Title' : 'picocli',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion,
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'picocli',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion,
'Implementation-Version': archiveVersion.get(),
'Main-Class' : 'picocli.AutoComplete'
}
// copy module-info.class to META-INF/versions/9
Expand Down
4 changes: 2 additions & 2 deletions picocli-annotation-processing-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jar {
manifest {
attributes 'Specification-Title': 'Picocli Annotation Processing Tests',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion,
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'Picocli Annotation Processing Tests',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion,
'Implementation-Version': archiveVersion.get(),
'Automatic-Module-Name' : 'info.picocli.annotation.processing.tests'
}
}
4 changes: 2 additions & 2 deletions picocli-codegen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jar {
manifest {
attributes 'Specification-Title' : 'Picocli Code Generation',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion,
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'Picocli Code Generation',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion,
'Implementation-Version': archiveVersion.get(),
'Automatic-Module-Name' : 'info.picocli.codegen'
}
}
Expand Down
4 changes: 2 additions & 2 deletions picocli-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jar {
manifest {
attributes 'Specification-Title' : 'Picocli Groovy',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion,
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'Picocli Groovy',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion,
'Implementation-Version': archiveVersion.get(),
'Automatic-Module-Name' : 'info.picocli.groovy'
}
}
Expand Down
4 changes: 2 additions & 2 deletions picocli-shell-jline2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jar {
manifest {
attributes 'Specification-Title' : 'Picocli Shell JLine2',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion,
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'Picocli Shell JLine2',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion,
'Implementation-Version': archiveVersion.get(),
'Automatic-Module-Name' : 'info.picocli.shell.jline2'
}
}
Expand Down
4 changes: 2 additions & 2 deletions picocli-shell-jline3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jar {
manifest {
attributes 'Specification-Title' : 'Picocli Shell JLine3',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion,
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'Picocli Shell JLine3',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion,
'Implementation-Version': archiveVersion.get(),
'Automatic-Module-Name' : 'info.picocli.shell.jline3'
}
}
Expand Down
4 changes: 2 additions & 2 deletions picocli-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jar {
manifest {
attributes 'Specification-Title' : 'Picocli Spring Boot Starter',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion,
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'Picocli Spring Boot Starter',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion,
'Implementation-Version': archiveVersion.get(),
'Automatic-Module-Name' : 'info.picocli.spring'
}
}
Expand Down

0 comments on commit 5d0848f

Please sign in to comment.