1

我有这个 repo 但不知道如何实际使用它。只做了一个 git clone 但下一步是什么? https://github.com/kotest/kotest-intellij-plugin

4

3 回答 3

2

好的,我设法安装它!步骤是:

(在命令行上)

1) 通过运行这个 git 克隆 repo git clone https://github.com/kotest/kotest-intellij-plugin.git

2)将目录更改为repo主文件夹并运行gradle build

(在 IntelliJ IDEA 上)

3) 转到 Prefrences->plugins 并单击顶部的小齿轮符号。选择“从磁盘安装插件”

4) 然后选择在 \build\distributions 文件夹下创建的 zip 文件。单击确定后,它将安装它,您将不得不重新启动您的 IDEA。

我不确定还需要一件事:我将这部分包含在我的 pom.xml 中。(版本可能对您有所不同)。

        <dependency>
            <groupId>io.kotest</groupId>
            <artifactId>kotest-runner-console</artifactId>
            <version>4.0.5</version>
            <type>pom</type>
        </dependency>
于 2020-05-07T12:17:58.380 回答
2

仅供参考:该插件的 1.0.0 版本已于几天前发布,因此现在可以通过 IntelliJ 插件市场安装。

不要忘记将“kotest-runner-console-jvm”依赖项添加到您的项目中。

于 2020-06-18T17:00:23.087 回答
0

@Dawn 答案效果很好,而不是从源代码构建,您也可以直接从jetbrains 插件存储库下载插件并按照@Dawn 答案中给出的说明进行安装。

于 2020-05-13T06:01:38.970 回答