Skip to content

Commit

Permalink
refactor(license): organize license files together (#1458)
Browse files Browse the repository at this point in the history
* refactor(license): organize license files together

Signed-off-by: Kami Wan <kamiwan@iMac-Pro.local>

* fix(license): fix build path

Signed-off-by: Kami Wan <kamiwan@iMac-Pro.local>

---------

Signed-off-by: Kami Wan <kamiwan@iMac-Pro.local>
  • Loading branch information
KaimingWan committed Jun 25, 2024
1 parent 062d4f3 commit 0afa044
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
4 changes: 0 additions & 4 deletions LICENSE

This file was deleted.

3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,5 @@ If you've found a problem with AutoMQ, please open a [GitHub Issues](https://git
To contribute to AutoMQ please see [Code of Conduct](CODE_OF_CONDUCT.md) and [Contributing Guide](CONTRIBUTING_GUIDE.md).
We have a list of [good first issues](https://github.com/AutoMQ/automq/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) that help you to get started, gain experience, and get familiar with our contribution process. To claim one, simply reply with 'pick up' in the issue and the AutoMQ maintainers will assign the issue to you. If you have any questions about the 'good first issue' please feel free to ask. We will do our best to clarify any doubts you may have.

## ⭐ License
AutoMQ is released under [Business Source License 1.1](BSL.md). When contributing to AutoMQ, you can find the relevant license header in each file.

## 🙋 Contact Us
Want to learn more, [Talk with our product experts](https://automq66.feishu.cn/share/base/form/shrcnoqxslhYkujx6ULiMxOqkGh).
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ project(':core') {
testImplementation libs.slf4jlog4j
testImplementation libs.caffeine
testImplementation libs.commonMath3

generator project(':generator')
}

Expand Down Expand Up @@ -1196,7 +1196,7 @@ project(':core') {
from(project.file("$rootDir/licenses")) { into "licenses/" }
from(project.file("$rootDir/docker/docker-compose.yaml")) { into "docker/" }
from(project.file("$rootDir/docker/telemetry")) { into "docker/telemetry/" }
from(project.file("$rootDir/BSL.md")) { into "" }
from(project.file("$rootDir/licenses/BSL.md")) { into "" }
from "$rootDir/LICENSE-binary" rename {String filename -> filename.replace("-binary", "")}
from "$rootDir/NOTICE-binary" rename {String filename -> filename.replace("-binary", "")}
from(configurations.runtimeClasspath) { into("libs/") }
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions licenses/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## FAQ

Source code in this repository is variously licensed under the Business Source License 1.1 (BSL), the Apache License v2.0, and other open source licenses. A copy of each license can be found under the licenses directory. The license of a given source code file is noted at the beginning of the file.

0 comments on commit 0afa044

Please sign in to comment.