0

我尝试使用 IntelliJ 的 Maven 部署 Cloudbees 应用程序,但 IntelliJ 突出显示了插件声明。错误是:Plugin '''com.cloudbees:bees-maven-plugin:1.3.2''' not found.

Maven 目标正在发挥作用。这是我的 pom 中的插件声明:

<pluginRepositories>
    <pluginRepository>
        <id>cloudbees-public-release</id>
        <url>http://repository-cloudbees.forge.cloudbees.com/public-release</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </pluginRepository>
</pluginRepositories>

<build>
    <plugins>
        <plugin>
            <groupId>com.cloudbees</groupId>
            <artifactId>bees-maven-plugin</artifactId>
            <version>1.3.2</version>
        </plugin>
    </plugins>
</build>

谢谢

4

1 回答 1

1

一开始没有用,但是mvn clean install在cmd中正常启动后Intellij Idea找到了。尝试也运行mvn bees:run

于 2013-10-11T13:32:34.750 回答