问题描述
我正在将我的代码从 JBoss Fuse 6.2.1 移植到 JBoss Fuse 6.3.0.
I am porting my code from JBoss Fuse 6.2.1 to JBoss Fuse 6.3.0.
在我的开发环境中,我使用 Maven 构建 Java 项目的 -SNAPSHOTS,并使用 dev:watch
命令自动部署它们.
On my development environment I used Maven to build -SNAPSHOTS of my Java projects, and have them automatically deployed using dev:watch
command.
我使用 install mvn:my.groupid/my-artifactid/version-SNAPSHOT
和 dev:watch ID
安装了我的包.
以下 mvn install
构建不会自动加载到 JBoss Fuse 中,任何日志中都没有消息.
I installed my bundle with install mvn:my.groupid/my-artifactid/version-SNAPSHOT
and then dev:watch ID
.
Following mvn install
builds do not get automatically loaded inside JBoss Fuse, no messages in any log.
可能是什么原因?
推荐答案
不同版本之间的默认配置已更改.
属性 org.ops4j.pax.url.mvn.localRepository
未在 6.2.1 中定义(因此默认为 ~/.m2/repository
),现在默认为 ${karaf.data}/repository
on 6.3.0
A default configuration has changed between versions.
Property org.ops4j.pax.url.mvn.localRepository
was not defined in 6.2.1 (thus defaulting to ~/.m2/repository
), now defaults to ${karaf.data}/repository
on 6.3.0
所以要重新启用以前的行为,请将属性设置为
So to reenable previous behaviour, set the property to
#Linux
org.ops4j.pax.url.mvn.localRepository=~/.m2/repository
#Windows
org.ops4j.pax.url.mvn.localRepository=/Users/alessandro/.m2/repository
属性定义在etc/org.ops4j.pax.url.mvn.cfg
6.2.1 版
# Path to the local maven repository which is used to avoid downloading
# artifacts when they already exist locally.
# The value of this property will be extracted from the settings.xml file
# above, or defaulted to:
# System.getProperty( "user.home" ) + "/.m2/repository"
#
#org.ops4j.pax.url.mvn.localRepository=
6.3.0 版
# Path to the local Maven repository which is used to avoid downloading
# artifacts when they already exist locally.
# The value of this property will be extracted from the settings.xml file
# above, or defaulted to:
# System.getProperty( "user.home" ) + "/.m2/repository"
# leaving this option commented makes the system dependent on external configuration, which is not always desired
# "localRepository" is the target location for artifacts downloaded from "remote repositories", it's not
# searched for already available artifacts, unless added explicitly to "defaultRepositories"
# by default internal local repository is used to have behavior independent of the content of ~/.m2/repository
org.ops4j.pax.url.mvn.localRepository = ${karaf.data}/repository
这篇关于dev:watch 不会在 JBoss Fuse 6.3.0 上重新加载包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!