コマンド プロンプトを使用して Mule プロジェクトを cloudhub にデプロイしようとしています。以下のエラーが表示されます。
" Illegal path attribute "/nexus". Path of origin: "/snapshots/org/mule/modules/mule-module- cloudhub/3.0.0-SNAPSHOT/mule-module-cloudhub-3.0.0-20140909.225040-1.pom"
nexus のリポジトリを削除しようとしましたが、同じエラーが発生しました。URLも参考にしました
- http://dev.ee.mulesource.com への接続が拒否されました: 操作がタイムアウトしました
- Maven を使用した Mule Studio 3.4 ビルドが失敗するか、無期限にハングするのはなぜですか?
しかし、anypoint GUI を使用してデプロイしようとすると、クラウドハブにデプロイされています。コンソールになると問題が発生します。
Nexus の pom リポジトリを見つけてください
<repository>
<id>mule-ee-releases</id>
<name>Mule Release Repository</name>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/ci-releases/</url>
</repository>
</repositories>
設定.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<pluginGroups>
<pluginGroup>org.mule.tools</pluginGroup>
</pluginGroups>
<servers>
<server>
<id>cloudhub.io</id>
<username>my_UserName</username>
<password>PWD</password>
</server>
</servers>
</settings>