Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include LICENSE.md within JAR file. #46

Merged
merged 1 commit into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,14 @@

This software includes software from others as follows:

A class from: https://github.com/exbin/bined-lib-java
Included in src/main/java/com/blackberry/jwteditor/view/HexCodeAreaCommandHandler.java
Copyright (C) ExBin Project
Licensed under Apache-2.0 as above

Some classes from https://bitbucket.org/connect2id/nimbus-jose-jwt
Included in: src/main/java/com/blackberry/jwteditor/cryptography/okp/
Copyright 2012-2018, Connect2id Ltd.
Licensed under Apache-2.0 as above
* Two class from: https://github.com/exbin/bined-lib-java included at:
* src/main/java/com/blackberry/jwteditor/view/HexCodeAreaCommandHandler.java
* src/main/java/org/exbin/deltahex/swing/DefaultCodeAreaCommandHandler.java

Copyright (C) ExBin Project - Licensed under Apache-2.0 as above.


* Some classes from https://bitbucket.org/connect2id/nimbus-jose-jwt included within:
* src/main/java/com/blackberry/jwteditor/cryptography/okp/

Copyright 2012-2018 Connect2id Ltd - Licensed under Apache-2.0 as above.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,8 @@ jar {
})
}
}
from(rootDir) {
include 'LICENSE.md'
into 'META-INF'
}
}
Loading