Skip to content

Commit

Permalink
chore: removed and updated common project files
Browse files Browse the repository at this point in the history
Removed unnecesary files from submodules.
  • Loading branch information
jjaakola-aiven committed Nov 24, 2023
1 parent b30a6c9 commit 14e9a9c
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 1,221 deletions.
9 changes: 5 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,17 @@ To send us a pull request, please:
2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
3. Ensure local tests pass.
4. Commit to your fork using clear commit messages.
5. Send us a pull request, answering any default questions in the pull request interface.
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
7. Before merging, clean up the commit history for the PR. Each commit should be self-contained with an informative message, since each commit will be added to the history for this project.
5. Be compliant with our formatting style by running `./gradlew spotlessApply`
6. Send us a pull request, answering any default questions in the pull request interface.
7. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
8. Before merging, clean up the commit history for the PR. Each commit should be self-contained with an informative message, since each commit will be added to the history for this project.

GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).

## Developer Certificate of Origin

Aiven's Common Module for Apache Kafka connectors is an open source product released under the Apache 2.0 license (see either [the Apache site](https://www.apache.org/licenses/LICENSE-2.0) or the [LICENSE.txt file](LICENSE.txt)). The Apache 2.0 license allows you to freely use, modify, distribute, and sell your own products that include Apache 2.0 licensed software.
Aiven's Apache Kafka Connectors Module for Apache Kafka connectors is an open source product released under the Apache 2.0 license (see either [the Apache site](https://www.apache.org/licenses/LICENSE-2.0) or the [LICENSE.txt file](LICENSE.txt)). The Apache 2.0 license allows you to freely use, modify, distribute, and sell your own products that include Apache 2.0 licensed software.

We respect intellectual property rights of others and we want to make sure all incoming contributions are correctly attributed and licensed. A Developer Certificate of Origin (DCO) is a lightweight mechanism to do that.

Expand Down
14 changes: 13 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import com.diffplug.gradle.spotless.SpotlessExtension
import java.net.URI

/*
Expand Down Expand Up @@ -39,4 +40,15 @@ val kafkaVersion by extra ("1.1.0")
val parquetVersion by extra ("1.11.2")
val junitVersion by extra ("5.10.0")
val confluentPlatformVersion by extra ("7.2.2")
val hadoopVersion by extra ("3.3.6")
val hadoopVersion by extra ("3.3.6")


configure<SpotlessExtension> {
format("misc") {
target("*.gradle", "*.md", ".gitignore")
targetExclude(".*/**", "**/build/**", "**/.gradle/**")
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
}
128 changes: 0 additions & 128 deletions gcs-connector/CODE_OF_CONDUCT.md

This file was deleted.

70 changes: 0 additions & 70 deletions gcs-connector/CONTRIBUTING.md

This file was deleted.

Loading

0 comments on commit 14e9a9c

Please sign in to comment.