-
Notifications
You must be signed in to change notification settings - Fork 1
Support Dokka v2 #75
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
Merged
+163
−7
Merged
Support Dokka v2 #75
Changes from all commits
Commits
Show all changes
61 commits
Select commit
Hold shift + click to select a range
044c7ad
Upgrade to Gradle 9
philipp94831 192e3d0
Upgrade to Gradle 9
philipp94831 3b2f9df
Upgrade to Gradle 9
philipp94831 8bdc1bb
Upgrade to Gradle 9
philipp94831 d8e7e73
Upgrade to Gradle 9
philipp94831 e38bcb7
Fix dokka plugin
philipp94831 15dfe9b
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 836ddf0
Fix
philipp94831 c963cd5
Fix
philipp94831 168f6a0
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 2c793ec
Fix
philipp94831 d7ca2b6
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 45618a5
Fix
philipp94831 37edb50
Fix
philipp94831 554f749
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 609acac
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 0b7785f
Update
philipp94831 184f3a0
Update
philipp94831 1bd6e80
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 4f65a22
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 5fccbcb
WIP
philipp94831 0f675c5
WIP
philipp94831 2ec5b1f
WIP
philipp94831 038b1ca
WIP
philipp94831 26a592e
WIP
philipp94831 8e3d2f5
WIP
philipp94831 75f379f
WIP
philipp94831 11d44ba
WIP
philipp94831 90d5ad6
WIP
philipp94831 532f364
WIP
philipp94831 7633ff2
WIP
philipp94831 99c0779
WIP
philipp94831 e84b8f8
WIP
philipp94831 b32a7f8
WIP
philipp94831 4951c45
WIP
philipp94831 518c25a
WIP
philipp94831 ee92700
WIP
philipp94831 d3c779f
WIP
philipp94831 10fe6e6
WIP
philipp94831 4605d29
WIP
philipp94831 da56a75
WIP
philipp94831 fb3761f
WIP
philipp94831 d86270a
Revert
philipp94831 9061383
Merge remote-tracking branch 'origin/master' into fix/dokka
philipp94831 fdb66ab
Failing test
philipp94831 ec7e3a6
Fix
philipp94831 05e308a
Remove PluginTest
philipp94831 ebaadb4
Remove PluginTest
philipp94831 38bf6ce
Remove PluginTest
philipp94831 d3ea31d
Fix
philipp94831 b8e44fb
Update
philipp94831 8f584e6
Update
philipp94831 53b7d1d
Update
philipp94831 7bfe4af
Update
philipp94831 e97f73d
Debug
philipp94831 05452be
Debug
philipp94831 f5e397c
Fix JavaDoc
philipp94831 61ab873
Fix JavaDoc
philipp94831 ee2dc24
Fix JavaDoc
philipp94831 0d0afc9
Refactor
philipp94831 ce02652
Update copyright
philipp94831 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,10 @@ | ||
| import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
|
||
| import org.junit.jupiter.api.Test; | ||
|
|
||
| import static org.junit.jupiter.api.Assertions.assertEquals; | ||
| public class DemoTest { | ||
| @Test | ||
| public void shouldBeEven() { | ||
| assertEquals(true, 4 % 2 == 0); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| public class Demo { | ||
| fun isEven(num: Int): Boolean { | ||
| return num % 2 == 0 | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.