我在卡拉夫有捆绑包。 它的版本是1.0.0(没有SNAPSHOT部分)。
我正在尝试使用karaf-maven-plugin在Karaf中更新我的软件包。 但这不起作用(Karaf中的捆绑包保持不变)。
这是karaf-maven-plugin配置:
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>4.2.1</version>
<executions>
<execution>
<id>deploy_bundle_to_local_karaf</id>
<phase>install</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<port>8101</port>
<host>localhost</host>
<instance>karaf-root</instance>
</configuration>
</execution>
</executions>
</plugin>
有什么我想念的吗?