ReadMe.md 10.6 KB
Newer Older
D
Dmitry Jemerov 已提交
1
[![official project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
2
[![TeamCity (simple build status)](https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/Kotlin_dev_Compiler.svg)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=Kotlin_dev_Compiler&branch_Kotlin_dev=%3Cdefault%3E&tab=buildTypeStatusDiv)
Z
Zalim Bashorov 已提交
3 4 5
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlin/kotlin-maven-plugin.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.jetbrains.kotlin%22)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)

6 7
# Kotlin Programming Language

8
Welcome to [Kotlin](https://kotlinlang.org/)! Some handy links:
9

10 11
 * [Kotlin Site](https://kotlinlang.org/)
 * [Getting Started Guide](https://kotlinlang.org/docs/tutorials/getting-started.html)
12
 * [Try Kotlin](https://try.kotlinlang.org/)
13 14 15 16
 * [Kotlin Standard Library](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
 * [Issue Tracker](https://youtrack.jetbrains.com/issues/KT)
 * [Forum](https://discuss.kotlinlang.org/)
 * [Kotlin Blog](https://blog.jetbrains.com/kotlin/)
A
Alexander Udalov 已提交
17
 * [Follow Kotlin on Twitter](https://twitter.com/kotlin)
D
Dmitry Jemerov 已提交
18
 * [Public Slack channel](http://slack.kotlinlang.org/)
19
 * [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
20 21 22

## Editing Kotlin

23
 * [Kotlin IntelliJ IDEA Plugin](https://kotlinlang.org/docs/tutorials/getting-started.html)
24
 * [Kotlin Eclipse Plugin](https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
25
 * [Kotlin Sublime Text Package](https://github.com/vkostyukov/kotlin-sublime-package)
26

27 28 29 30
## Build environment requirements

In order to build Kotlin distribution you need to have:

31
- JDK 1.6, 1.7, 1.8 and 9
32 33
- Setup environment variables as following:

34
        JAVA_HOME="path to JDK 1.8"
35 36 37
        JDK_16="path to JDK 1.6"
        JDK_17="path to JDK 1.7"
        JDK_18="path to JDK 1.8"
38
        JDK_9="path to JDK 9"
39

40
For local development, if you're not working on bytecode generation or the standard library, it's OK to have only JDK 1.8 and JDK 9 installed, and to point JDK_16 and JDK_17 environment variables to your JDK 1.8 installation.
41

42 43
You also can use [Gradle properties](https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_properties_and_system_properties) to setup JDK_* variables.

44 45
> Note: The JDK 6 for MacOS is not available on Oracle's site. You can [download it here](https://support.apple.com/kb/DL1572). 

46 47
## Building

I
Ilya Gorbunov 已提交
48 49
The project is built with Gradle. Run Gradle to build the project and to run the tests 
using the following command on Unix/macOS:
50

51 52
    ./gradlew <tasks-and-options>
    
I
Ilya Gorbunov 已提交
53
or the following command on Windows:
J
Jason Yeo 已提交
54

55
    gradlew <tasks-and-options>
I
Ilya Gorbunov 已提交
56 57 58 59 60 61

On the first project configuration gradle will download and setup the dependencies on

* `intellij-core` is a part of command line compiler and contains only necessary APIs.
* `idea-full` is a full blown IntelliJ IDEA Community Edition to be used in the plugin module.

F
Felix Guo 已提交
62
These dependencies are quite large, so depending on the quality of your internet connection 
I
Ilya Gorbunov 已提交
63 64
you might face timeouts getting them. In this case you can increase timeout by specifying the following 
command line parameters on the first run: 
65
    
I
Ilya Gorbunov 已提交
66
    ./gradlew -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000
67

68
## Important gradle tasks
69

70 71 72 73 74 75
- `clean` - clean build results
- `dist` - assembles the compiler distribution into `dist/kotlinc/` folder
- `ideaPlugin` - assembles the Kotlin IDEA plugin distribution into `dist/artifacts/Kotlin` folder
- `install` - build and install all public artifacts into local maven repository
- `runIde` - build IDEA plugin and run IDEA with it
- `coreLibsTest` - build and run stdlib, reflect and kotlin-test tests
76
- `gradlePluginTest` - build and run gradle plugin tests
77 78
- `compilerTest` - build and run all compiler tests
- `ideaPluginTest` - build and run all IDEA plugin tests
79

I
Ilya Gorbunov 已提交
80
**OPTIONAL:** Some artifacts, mainly Maven plugin ones, are built separately with Maven.
81
Refer to [libraries/ReadMe.md](libraries/ReadMe.md) for details.
82

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

### Building for different versions of IntelliJ IDEA and Android Studio

Kotlin plugin is indented to work with several recent versions of IntelliJ IDEA and Android Studio. Each platform is allowed to have a different set of features and might provide a slightly different API. Instead of using several parallel Git branches, project stores everything in a single branch, but files may have counterparts with version extensions (\*.as32, \*.172, \*.181). The primary file is expected to be replaced with its counterpart when targeting non-default platform.

More detailed description of this scheme can be found at https://github.com/JetBrains/bunches/blob/master/ReadMe.md.

Usually, there's no need to care about multiple platforms as all features are enabled everywhere by default. Additional counterparts should be created if there's an expected difference in behavior or an incompatible API usage is required **and** there's no reasonable workaround to save source compatibility. Kotlin plugin contains a pre-commit check that shows a warning if a file has been updated without its counterparts.

Development for some particular platform is possible after 'switching' that can be done with [Bunch Tool](https://github.com/JetBrains/bunches/releases) from the command line.

```sh
cd kotlin-project-dir

# switching to IntelliJ Idea 2018.2
bunch switch . 182
```

I
Ilya Gorbunov 已提交
101
## <a name="working-in-idea"></a> Working with the project in IntelliJ IDEA
102

103
Working with the Kotlin project requires at least IntelliJ IDEA 2017.3. You can download IntelliJ IDEA 2017.3 [here](https://www.jetbrains.com/idea/download).
104

105
After cloning the project, to import the project in Intellij choose the project directory in the Open project dialog. Then, after project opened, Select 
106
`File` -> `New...` -> `Module from Existing Sources` in the menu, and select `build.gradle.kts` file in the project's root folder.
107

108
In the import dialog, select `use default gradle wrapper`.
A
Andrey Breslav 已提交
109

110
To be able to run tests from IntelliJ easily, check `Delegate IDE build/run actions to Gradle` and choose `Gradle Test Runner` in the Gradle runner settings after importing the project.
111

I
Ilya Gorbunov 已提交
112
At this time, you can use the latest released 1.2.x version of the Kotlin plugin for working with the code. To make sure you have the latest version installed, use Tools | Kotlin | Configure Kotlin Plugin Updates and press "Check for updates now".
113 114 115 116 117 118

### Compiling and running

From this root project there are Run/Debug Configurations for running IDEA or the Compiler Tests for example; so if you want to try out the latest and greatest IDEA plugin

* VCS -> Git -> Pull
119
* Run the "IDEA" run configuration in the project
120 121
* a child IntelliJ IDEA with the Kotlin plugin will then startup

122 123 124 125 126 127 128 129 130 131 132 133
### Including into composite build

To include kotlin compiler into [composite build](https://docs.gradle.org/current/userguide/composite_builds.html) you need to define `dependencySubstitution` for `kotlin-compiler` module in `settings.gradle`

```
includeBuild('/path/to/kotlin') {
    dependencySubstitution {
        substitute module('org.jetbrains.kotlin:kotlin-compiler') with project(':include:kotlin-compiler')
    }
}
```

134 135
# Contributing

136
We love contributions! There's [lots to do on Kotlin](https://youtrack.jetbrains.com/issues/KT) and on the
137
[standard library](https://youtrack.jetbrains.com/issues/KT?q=%23Kotlin%20%23Unresolved%20and%20(links:%20KT-2554,%20KT-4089%20or%20%23Libraries)) so why not chat with us
Y
Yujin Jung 已提交
138
about what you're interested in doing? Please join the #kontributors channel in [our Slack chat](http://slack.kotlinlang.org/)
D
Dmitry Jemerov 已提交
139
and let us know about your plans.
140

141
If you want to find some issues to start off with, try [this query](https://youtrack.jetbrains.com/issues/KT?q=tag:%20%7BUp%20For%20Grabs%7D%20and%20State:%20Open) which should find all open Kotlin issues that are marked as "up-for-grabs".
142 143 144

Currently only committers can assign issues to themselves so just add a comment if you're starting work on it.

145
A nice gentle way to contribute would be to review the [standard library docs](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
D
Dmitry Jemerov 已提交
146
and find classes or functions which are not documented very well and submit a patch.
147

D
Dmitry Jemerov 已提交
148
In particular it'd be great if all functions included a nice example of how to use it such as for the
149 150
[`hashMapOf()`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/hash-map-of.html) function.
This is implemented using the [`@sample`](https://github.com/JetBrains/kotlin/blob/1.1.0/libraries/stdlib/src/kotlin/collections/Maps.kt#L91)
151
macro to include code from a test function. The benefits of this approach are twofold; First, the API's documentation is improved via beneficial examples that help new users and second, the code coverage is increased.
152

153
Some of the code in the standard library is created by generating code from templates. See the [README](libraries/stdlib/ReadMe.md) in the stdlib section for how to run the code generator. The existing templates can be used as examples for creating new ones.
154

155 156
Also the [JavaScript back-end](https://github.com/JetBrains/kotlin/blob/master/js/ReadMe.md) could really use your help. See the [JavaScript contribution section](https://github.com/JetBrains/kotlin/blob/master/js/ReadMe.md) for more details.

A
Alexander Udalov 已提交
157
If you want to contribute a new language feature, it is important to discuss it through a [KEEP](https://github.com/Kotlin/KEEP) first and get an approval from the language designers. This way you'll make sure your work will be in line with the overall language evolution plan and no other design decisions or considerations will block its acceptance.
158

D
Dmitry Jemerov 已提交
159
## Submitting patches
160

161 162
The best way to submit a patch is to [fork the project on GitHub](https://help.github.com/articles/fork-a-repo/) and then send us a
[pull request](https://help.github.com/articles/creating-a-pull-request/) via [GitHub](https://github.com).
163

J
Jason Yeo 已提交
164
If you create your own fork, it might help to enable rebase by default
I
imknown J. Kimu 已提交
165 166 167 168 169
when you pull by executing
``` bash
git config --global pull.rebase true
```
This will avoid your local repo having too many merge commits
J
Jason Yeo 已提交
170
which will help keep your pull request simple and easy to apply.
171 172 173 174 175 176 177 178 179 180 181

## Checklist

Before submitting the pull request, make sure that you can say "YES" to each point in this short checklist:

  - You provided the link to the related issue(s) from YouTrack
  - You made a reasonable amount of changes related only to the provided issues
  - You can explain changes made in the pull request
  - You ran the build locally and verified new functionality
  - You ran related tests locally and they passed
  - You do not have merge commits in the pull request