mirror of
https://github.com/QuiltMC/quilt-template-mod
synced 2024-08-15 00:23:32 +00:00
parent
3467c491b7
commit
4193aab616
2 changed files with 4 additions and 2 deletions
|
@ -15,6 +15,7 @@ In order to use this mod as a template:
|
||||||
- If you are planning to include (jar-in-jar) a mod, don't forget to declare its dependency on it!
|
- If you are planning to include (jar-in-jar) a mod, don't forget to declare its dependency on it!
|
||||||
- The icon provided here is a placeholder one. If you aren't able to replace it yet, you can delete it and remove the "icon" property
|
- The icon provided here is a placeholder one. If you aren't able to replace it yet, you can delete it and remove the "icon" property
|
||||||
- Create a LICENSE file for this mod! If you don't know which license to use, check out [here](https://choosealicense.com/).
|
- Create a LICENSE file for this mod! If you don't know which license to use, check out [here](https://choosealicense.com/).
|
||||||
|
- If you use `LICENSE.md`, don't forget to update the buildscript in order to use that file name!
|
||||||
- In `quilt.mod.json`, don't forget to put the license's [SPDX identifier](https://spdx.org/licenses/) under the `"license"` property in `"metadata"`.
|
- In `quilt.mod.json`, don't forget to put the license's [SPDX identifier](https://spdx.org/licenses/) under the `"license"` property in `"metadata"`.
|
||||||
- The GPLv3 and AGPLv3 are not valid mod licenses, so you can use almost any license except for those.
|
- The GPLv3 and AGPLv3 are not valid mod licenses, so you can use almost any license except for those.
|
||||||
- Update the Java sub-directory structure so it reflects your Maven group
|
- Update the Java sub-directory structure so it reflects your Maven group
|
||||||
|
|
|
@ -63,9 +63,10 @@ java {
|
||||||
// withJavadocJar()
|
// withJavadocJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If you plan to use a different file for the license, don't forget to change the file name here!
|
||||||
jar {
|
jar {
|
||||||
filesMatching('LICENSE') {
|
from('LICENSE') {
|
||||||
rename '^(LICENSE.*?)(\\..*)?$', "\$1_${archivesBaseName}\$2"
|
rename { "${it}_${archivesBaseName}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue