我正在尝试设置常春藤以从 springsource 存储库中获取罐子。到目前为止,我的 ivy.xml 有:-
<dependencies>
<dependency org="org.springframework" name="org.springframework.core" rev="3.0.1.RELEASE"/>
<dependency org="org.springframework" name="org.springframework.aop" rev="3.0.1.RELEASE" />
<dependency org="com.adobe.flex" name="com.springsource.flex.messaging.common" rev="3.2.0.3978"/>
<dependency org="com.adobe.flex" name="com.springsource.flex.messaging" rev="3.2.0.3978" />
</dependencies>
对于我的 ivysettings.xml:-
<ivysettings>
<settings defaultresolver="spring.chain" deafultcache="C:/repo" />
<resolvers>
<chain name="spring.chain">
<url name="com.springsource.repository.bundles.release">
<ivy pattern="http://repository.springsource.com/ivy/bundles/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
<artifact pattern="http://repository.springsource.com/ivy/bundles/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
</url>
<url name="com.springsource.repository.bundles.external">
<ivy pattern="http://repository.springsource.com/ivy/bundles/external/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
<artifact pattern="http://repository.springsource.com/ivy/bundles/external/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
</url>
<ibiblio name="ibiblio" m2compatible="true"/>
</chain>
</resolvers>
但我不断收到错误:-
未知解析器 null 未找到 org.springframework#org.springframework.core 的解析器:检查您的配置 未知解析器 null 未找到 org.springframework#org.springframework.aop 的解析器:检查您的配置 未知解析器 null 未找到 com.adobe 的解析器.flex#com.springsource.flex.messaging.common:检查您的配置 未知解析器 null 未找到 com.adobe.flex#com.springsource.flex.messaging 的解析器:检查您的配置
关于解析器,我是否遗漏了一些东西?