2017-07-13 12 views
0

私のミュールプロジェクトでmavenを使用しています。私はmule ee repo username/passwordを持っていません。 資格情報を持たずにEEで開発を行うことができますか、それとも回避策がありますか。 私は継続的にあなたが完全に文句を言わない有効期限が切れているローカル開発にランタイムのラバEEのバージョンを使用することができますMulestudioでエラー返信者名とパスワードなしのMule EE開発

Could not transfer artifact com.mulesoft.muleesb:mule-core-ee:pom:3.8.3 from/to mule-ee-releases 
(https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/): Not authorized , ReasonPhrase:Unauthorized. 

答えて

0

を取得する(Mulestudio - >ヘルプ - >新規ソフトウェアのインストール] - > [Updateサイト:http://studio.mulesoft.org/r5/studio-runtimes/)。このケースでは、サーバーにEEライセンスを持っている必要があります(EEコンポーネントをMuleフローで使用しているため)。あなたのケースでは

、そのMavenの開発、あなたはミュールCEレポ(オープンソースMulesoftリポジトリ)から瓶をダウンロードすることができ、Mavenの設定は以下の通り:

<repositories> 
... 
<repository> 
    <id>mulesoft-releases</id> 
    <name>MuleSoft Repository</name> 
    <url>http://repository.mulesoft.org/releases/</url> 
    <layout>default</layout> 
</repository> 
<repository> 
    <id>mulesoft-snapshots</id> 
    <name>MuleSoft Snapshot Repository</name> 
    <url>http://repository.mulesoft.org/snapshots/</url> 
    <layout>default</layout> 
</repository> 

(注ラバdevに関するCEコンポーネントを使用する必要があります) ...

参照してください:https://docs.mulesoft.com/mule-user-guide/v/3.6/configuring-maven-to-work-with-mule-esb

を使用すると、有効なlicense.Contact Mulesoftサポート

を持ってまで、あなたはEEレポを使用することはできません

https://developer.mulesoft.com/mulesoft-products-and-licensing

https://docs.mulesoft.com/mule-user-guide/v/3.7/installing-an-enterprise-license

関連する問題