Skip to content

Commit

Permalink
Update license year
Browse files Browse the repository at this point in the history
  • Loading branch information
serpro69 committed Feb 18, 2024
1 parent b7363fe commit d7d0100
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- 'docs/**'
- 'CHANGELOG.adoc'
- 'CONTRIBUTING.adoc'
- 'LICENCE.adoc'
- 'LICENSE.adoc'
- 'README.md'
- 'prepare-dicts-for-docs.sh'
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Please first open the issue, though, so we can discuss the feature before you ha
=== License

Any contributions you make will be under the MIT Software License.
In short, when you submit code changes, your submissions are understood to be under the same link:LICENCE.adoc[LICENCE] that covers the project.
In short, when you submit code changes, your submissions are understood to be under the same link:LICENSE.adoc[LICENSE] that covers the project.
Feel free to contact the maintainers if that's a concern.

=== Rules
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Serhii Prodanov
Copyright (c) 2024 Serhii Prodanov

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:

Expand Down
5 changes: 4 additions & 1 deletion buildSrc/src/main/kotlin/faker-lib-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,16 @@ val shadowJar by tasks.getting(ShadowJar::class) {
)
)
}
from("${rootProject.rootDir.resolve("LICENSE.adoc")}") {
into("META-INF")
}
dependsOn(tasks.jar)
}

val sourcesJar by tasks.creating(Jar::class) {
archiveClassifier.set("sources")
from(sourceSets.getByName("main").allSource)
from("LICENCE.md") {
from("${rootProject.rootDir.resolve("LICENSE.adoc")}") {
into("META-INF")
}
}
Expand Down

0 comments on commit d7d0100

Please sign in to comment.