Конфигурация плюща для репозитория springsource - PullRequest
0 голосов
/ 16 марта 2010

Я пытаюсь настроить плющ, чтобы получить банки из репозитория 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>

Но я продолжаю получать ошибки: -

неизвестный распознаватель ноль для org.springframework # org.springframework.core не найден определитель: проверьте свою конфигурацию неизвестный преобразователь ноль для org.springframework # org.springframework.aop не найден определитель: проверьте свою конфигурацию неизвестный преобразователь ноль для com.adobe.flex # com.springsource.flex.messaging.common не найдено преобразователя: проверьте конфигурацию неизвестный преобразователь ноль для com.adobe.flex # com.springsource.flex.messaging не найдено преобразователя: проверьте свою конфигурацию

Неужели я что-то не знаю по отношению к распознавателям?

1 Ответ

1 голос
/ 16 марта 2010

Из-за опечатки defaultresolver = "spring.chain" должно быть defaultResolver = "spring.chain"

...