Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add serialization as git submodule #4495

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "kotlinx.serialization"]
path = kotlinx-serialization
url = https://github.com/Kotlin/kotlinx.serialization
branch = doc-restructuring
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,17 @@ Note that source files for the [server-side landing page](https://kotlinlang.org

#### Sources in different repositories

Source files for the language specification and the docs for coroutines, lincheck, Dokka, and Library creators' guidelines
Source files for the language specification and the docs for coroutines, serialization, lincheck, Dokka, and Library creators' guidelines
are stored in separate repositories

| Website page | GitHub repository |
|--------------------------------------------------------------------------------------------------|---------------------------------------------------------------------|
| [Coroutines docs](https://kotlinlang.org/docs/coroutines-guide.html) | [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines/) |
| [Lincheck docs](https://kotlinlang.org/docs/lincheck-guide.html) | [kotlinx.lincheck](https://github.com/Kotlin/kotlinx-lincheck/) |
| [Dokka docs](https://kotlinlang.org/docs/dokka-introduction.html) | [Dokka](https://github.com/Kotlin/dokka/) |
| [Library creators' guidelines](https://kotlinlang.org/docs/jvm-api-guidelines-introduction.html) | [api-guidelines](https://github.com/Kotlin/api-guidelines) |
| [Language specification](https://kotlinlang.org/spec/introduction.html) | [kotlin-spec](https://github.com/Kotlin/kotlin-spec) |
| Website page | GitHub repository |
|--------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
| [Coroutines docs](https://kotlinlang.org/docs/coroutines-guide.html) | [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines/) |
| [Lincheck docs](https://kotlinlang.org/docs/lincheck-guide.html) | [kotlinx.lincheck](https://github.com/Kotlin/kotlinx-lincheck/) |
| [Dokka docs](https://kotlinlang.org/docs/dokka-introduction.html) | [Dokka](https://github.com/Kotlin/dokka/) |
| [Serialization docs](https://kotlinlang.org/docs/serialization.html) | [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) |
| [Library creators' guidelines](https://kotlinlang.org/docs/jvm-api-guidelines-introduction.html) | [api-guidelines](https://github.com/Kotlin/api-guidelines) |
| [Language specification](https://kotlinlang.org/spec/introduction.html) | [kotlin-spec](https://github.com/Kotlin/kotlin-spec) |

#### Auto-generated content

Expand Down
4 changes: 3 additions & 1 deletion docs/kr.tree
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,9 @@
<toc-element toc-title="Coroutines (kotlinx.coroutines)">
<include from="kc.tree" origin="coroutines" element-id="coroutines"/>
</toc-element>
<toc-element toc-title="Serialization (kotlinx.serialization)" topic="serialization.md"/>
<toc-element toc-title="Serialization (kotlinx.serialization)">
<include from="serialization.tree" origin="serialization" element-id="serialization"/>
</toc-element>
<toc-element toc-title="Lincheck (kotlinx.lincheck)">
<include from="kl.tree" origin="lincheck" element-id="lincheck"/>
</toc-element>
Expand Down
Loading