Skip to content

Commit b4950e3

Browse files
committed
Fix LICENSE
1 parent 3f9b981 commit b4950e3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Ennui Langeweile
3+
Copyright (c) 2021-2025 Ennui Langeweile
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ java {
6464
// If you plan to use a different file for the license, don't forget to change the file name here!
6565
tasks.named<Jar>("jar").configure {
6666
val name = project.name
67-
inputs.files("LICENSE.md")
67+
inputs.files("LICENSE")
6868
inputs.property("name", name)
6969

70-
from("LICENSE.md") {
71-
rename { "LICENSE_${name}.md" }
70+
from("LICENSE") {
71+
rename { "LICENSE_${name}" }
7272
}
7373
}
7474

@@ -87,4 +87,4 @@ publishing {
8787
// The repositories here will be used for publishing your artifact, not for
8888
// retrieving dependencies.
8989
}
90-
}
90+
}

0 commit comments

Comments
 (0)