You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change adds a plugin for IntelliJ that replaces the Gradle plugin
jar with its own shaded compiler plugin in order to support the Kotlin
compiler within IntelliJ.
Fixes#4
Copy file name to clipboardExpand all lines: README.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ To use the plugin, just apply the plugin in your `build.gradle`:
22
22
23
23
```groovy
24
24
plugins {
25
-
id 'nl.fabianm.kotlin.plugin.generated' version '1.3.1'
25
+
id 'nl.fabianm.kotlin.plugin.generated' version '1.3.2'
26
26
}
27
27
```
28
28
@@ -32,7 +32,7 @@ version you are using:
32
32
|**Kotlin**|**Plugin**|
33
33
|:----------:|:----------:|
34
34
| 1.2.*| 1.0 |
35
-
| 1.3.*| 1.3.1|
35
+
| 1.3.*| 1.3.2|
36
36
37
37
You can optionally configure the plugin as shown below:
38
38
@@ -46,6 +46,19 @@ kotlinGenerated {
46
46
}
47
47
```
48
48
49
+
## IntelliJ
50
+
To be able to use projects utilizing this plugin within IntelliJ IDEA,
51
+
you need to install the IntelliJ plugin (see [#4](https://github.com/fabianishere/kotlin-plugin-generated/issues/4) for more information). You can find the plugin on the
Copy file name to clipboardExpand all lines: plugin-compiler/src/main/kotlin/nl/fabianm/kotlin/plugin/generated/compiler/GeneratedClassBuilderInterceptorExtension.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2018 Fabian Mastenbroek.
2
+
* Copyright 2019 Fabian Mastenbroek.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
0 commit comments