diff options
author | Luck <git@lucko.me> | 2022-02-06 20:25:07 +0000 |
---|---|---|
committer | Luck <git@lucko.me> | 2022-02-06 20:25:07 +0000 |
commit | 25f46b649363d99f51b1b5262b5f7c0ce0c3251b (patch) | |
tree | d6e0350051d0e14d62bbd9764797ce334bf947f7 /spark-api | |
parent | c5494d20ce8c3c8868f0fc8e19a03d7888c6fe78 (diff) | |
download | spark-25f46b649363d99f51b1b5262b5f7c0ce0c3251b.tar.gz spark-25f46b649363d99f51b1b5262b5f7c0ce0c3251b.tar.bz2 spark-25f46b649363d99f51b1b5262b5f7c0ce0c3251b.zip |
Improve build tooling
- add version to output file name
- check license headers automatically
Diffstat (limited to 'spark-api')
-rw-r--r-- | spark-api/HEADER.txt | 22 | ||||
-rw-r--r-- | spark-api/build.gradle | 4 |
2 files changed, 26 insertions, 0 deletions
diff --git a/spark-api/HEADER.txt b/spark-api/HEADER.txt new file mode 100644 index 0000000..63aafcb --- /dev/null +++ b/spark-api/HEADER.txt @@ -0,0 +1,22 @@ +This file is part of spark, licensed under the MIT License. + + Copyright (c) lucko (Luck) <luck@lucko.me> + Copyright (c) contributors + + 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.
\ No newline at end of file diff --git a/spark-api/build.gradle b/spark-api/build.gradle index 31458af..0fbe9e1 100644 --- a/spark-api/build.gradle +++ b/spark-api/build.gradle @@ -9,6 +9,10 @@ dependencies { compileOnly 'org.jetbrains:annotations:20.1.0' } +license { + header = project.file('HEADER.txt') +} + publishing { //repositories { // maven { |