Skip to content

Commit

Permalink
1.75
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeust committed Mar 16, 2019
1 parent 9f25141 commit 85cb6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kobalt/src/Build.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ val jcommander = project {
name = "jcommander"
group = "com.beust"
artifactId = name
version = "1.73"
version = "1.75"
description = "A Java library to parse command line options"

dependenciesTest {
Expand Down

1 comment on commit 85cb6f7

@talios
Copy link

@talios talios commented on 85cb6f7 Mar 18, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting that this commit goes from 1.73 to 1.75 - I was resolving against 1.74 yesterday, and now I pick up the new 1.75 I get:

error: error reading /Users/amrk/.m2/repository/com/beust/jcommander/1.75/jcommander-1.75.jar; invalid manifest format

from some of my builds, with jdeps crashing - it looks like the manfiest is repeated in the jar:

Manifest-Version: 1.0
Bundle-Description: A Java library to parse command line options
Bundle-License: http://www.apache.org/licenses/LICENSE-2.0
Export-Package: com.beust.jcommander.converters;version="1.75",com.beu
 st.jcommander.defaultprovider;version="1.75",com.beust.jcommander;ver
 sion="1.75",com.beust.jcommander.internal;version="1.75",com.beust.jc
 ommander.validators;version="1.75"
Build-Date: 2019-03-16
Bundle-SymbolicName: jcommander
Bundle-Version: 1.75
Bundle-Name: com.beust.jcommander
Bundle-ManifestVersion: 2
Bnd-LastModified: 1552771161835
Created-By: 1.8.0_191 (Oracle Corporation)
Tool: Bnd-3.5.0.201709291849


Manifest-Version: 1.0
Bundle-Description: A Java library to parse command line options
Bundle-License: http://www.apache.org/licenses/LICENSE-2.0
Export-Package: com.beust.jcommander.converters;version="1.75",com.beu
 st.jcommander.defaultprovider;version="1.75",com.beust.jcommander;ver
 sion="1.75",com.beust.jcommander.internal;version="1.75",com.beust.jc
 ommander.validators;version="1.75"
Build-Date: 2019-03-16
Bundle-SymbolicName: jcommander
Bundle-Version: 1.75
Bundle-Name: com.beust.jcommander
Bundle-ManifestVersion: 2
Bnd-LastModified: 1552771171001
Created-By: 1.8.0_191 (Oracle Corporation)
Tool: Bnd-3.5.0.201709291849

Please sign in to comment.