Skip to content

Commit d7d0100

Browse files
committed
Update license year
1 parent b7363fe commit d7d0100

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- 'docs/**'
3131
- 'CHANGELOG.adoc'
3232
- 'CONTRIBUTING.adoc'
33-
- 'LICENCE.adoc'
33+
- 'LICENSE.adoc'
3434
- 'README.md'
3535
- 'prepare-dicts-for-docs.sh'
3636

CONTRIBUTING.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Please first open the issue, though, so we can discuss the feature before you ha
2222
=== License
2323

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

2828
=== Rules

LICENSE.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Serhii Prodanov
3+
Copyright (c) 2024 Serhii Prodanov
44

55
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:
66

buildSrc/src/main/kotlin/faker-lib-conventions.gradle.kts

+4-1
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,16 @@ val shadowJar by tasks.getting(ShadowJar::class) {
113113
)
114114
)
115115
}
116+
from("${rootProject.rootDir.resolve("LICENSE.adoc")}") {
117+
into("META-INF")
118+
}
116119
dependsOn(tasks.jar)
117120
}
118121

119122
val sourcesJar by tasks.creating(Jar::class) {
120123
archiveClassifier.set("sources")
121124
from(sourceSets.getByName("main").allSource)
122-
from("LICENCE.md") {
125+
from("${rootProject.rootDir.resolve("LICENSE.adoc")}") {
123126
into("META-INF")
124127
}
125128
}

0 commit comments

Comments
 (0)