Updated license info

master
Robinson 2021-08-22 23:55:44 -06:00
parent ec137d3c36
commit 37ebd30cf3
4 changed files with 45 additions and 3 deletions

View File

@ -21,6 +21,12 @@
Copyright 2020
Nathan Sweet
- Kotlin Hex -
[MIT License]
https://github.com/komputing/KHex
Copyright 2017
ligi
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin

21
LICENSE.MIT Normal file
View File

@ -0,0 +1,21 @@
MIT License
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -11,7 +11,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>ByteUtilities</artifactId>
<version>1.1</version>
<version>1.2</version>
</dependency>
</dependencies>
```
@ -21,7 +21,7 @@ Gradle Info
````
dependencies {
...
compile "com.dorkbox:ByteUtilities:1.0"
compile "com.dorkbox:ByteUtilities:1.2"
}
````

View File

@ -36,7 +36,7 @@ object Extras {
// set for the project
const val description = "Byte manipulation and Unsigned Number Utilities"
const val group = "com.dorkbox"
const val version = "1.1"
const val version = "1.2"
// set as project.ext
const val name = "ByteUtilities"
@ -77,6 +77,21 @@ licensing {
author("Nathan Sweet")
url("https://github.com/EsotericSoftware/kryo")
}
extra("Kotlin Hex", License.MIT) {
copyright(2017)
author("ligi")
url("https://github.com/komputing/KHex")
}
extra("Base58", License.APACHE_2) {
copyright(2018)
author("Google Inc")
author("Andreas Schildbach")
author("ligi")
url("https://bitcoinj.github.io")
url("https://github.com/komputing/KBase58")
}
}
}