Junhyung Im

Results 18 issues of Junhyung Im

Someone suggested, don't implicitly add repositories. Currently, spigradle adds `spigotmc`, `papermc` repositories by default. This behind was adding such essential repositories will help to keep buildscript simple and minimal. However,...

enhancement
help wanted

We need to support multi build tools like Maven, SBT. It needs whole refactoring for the generalization therefore it scheduled in next major 3.0.

https://www.spigotmc.org/threads/tutor-solving-unsupported-api-version-1-2-error-in-1-20-plugins.607378/

When I `fwrite` after `ftruncate`, the control characters ` ` has appended. ![image](https://github.com/php/doc-en/assets/16044565/e7b10675-b499-4468-bea1-7731e759aac6) You can reproduce this by: ``` $fp = fopen("file.txt", "r+b"); ftruncate($fp, 0); // rewind($fp); fwrite($fp, "contents"); ```...

If I declare a transitive dependency: ``` dependencies { implementation 'my:transitive:1.0.0' } ``` then expected: ```yml libraries: - 'my:transitive-a:1.0.0' - 'my:transitive-b:1.0.0' - 'my:transitive:1.0.0' ``` EDIT: also validate that the `libraries`...