1

基于此页面,我已将以下内容添加到我的 pom.xml 中:

https://github.com/Kotlin/dokka#using-the-maven-plugin

pom.xml

<dependency>
    <groupId>org.jetbrains.dokka</groupId>
    <artifactId>dokka-maven-plugin</artifactId>
    <version>0.9.19-dev-15</version>
</dependency>

<pluginRepositories>
    <pluginRepository>
        <id>jcenter</id>
        <name>JCenter</name>
        <url>https://jcenter.bintray.com/</url>
    </pluginRepository>
</pluginRepositories>

<plugin>
    <groupId>org.jetbrains.dokka</groupId>
    <artifactId>dokka-maven-plugin</artifactId>
    <version>0.9.19-dev-15</version>
    <executions>
        <execution>
            <phase>pre-site</phase>
            <goals>
                <goal>dokka</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <dokkaPlugins>
            <plugin>
            <groupId>org.jetbrains.dokka</groupId>
            <artifactId>kotlin-as-java-plugin</artifactId>
            <version>0.9.19-dev-15</version>
            </plugin>
        </dokkaPlugins>
    </configuration>
</plugin>

当我运行该项目时,我收到以下错误:

未找到依赖项 'org.jetbrains.dokka:dokka-maven-plugin:0.9.19-dev-15'

未找到插件“org.jetbrains.dokka:dokka-maven-plugin:0.9.19-dev-15”

有人可以帮忙解决这个配置吗?提前致谢。

4

1 回答 1

0

对于此版本,将 Kotlin Dev Maven 存储库添加到您的项目:

<repositories>
        <repository>
            <id>k-dev</id>
            <name>K-dev</name>
            <url>https://dl.bintray.com/kotlin/kotlin-dev/</url>
        </repository>
</repositories>

您可以在Maven 中心查看此库页面的存储库 URL :

注意:此工件位于 Kotlin Dev 存储库 ( https://dl.bintray.com/kotlin/kotlin-dev/ )

于 2020-12-14T08:50:06.683 回答