2017-10-27 33 views
0

mvn cleanまたはmvn clean installまたはmvn eclipse:eclipseのようなmavenコマンドを実行すると、以下のエラーが表示されます。解決できないビルド拡張:プラグインcom.opencloud.maven.plugins:maven-opencloud-jainslee-plugin:1.1

私のシステムでこれ以外の他のmavenプロジェクトを実行することができるので、パスの問題やプロキシに関係していないと確信しています。以下は

は私の誤りである

1.ビルドは1つのプロジェクトを読み込むことができませんでした[ERROR] - > [ヘルプ1] org.apache.maven.project.ProjectBuildingException:いくつかの問題が が発生した処理中にPOM:

2. [ERROR] Unresolveableビルド拡張子:プラグインcom.opencloud.maven.plugins:mavenの-opencloud-jainslee-プラグイン:その依存関係の1.1または1 は解決できませんでした: を見つけるに失敗「COM .opencloud.maven.plugins:maven-opencloud-jainslee-plugin:jar:1.1「の 」「がローカル リポジトリにキャッシュされた、解像度が中心の更新 間隔が経過したか、更新が@余儀なくされるまで再試行されることはありません

3. [ERROR]不明包装:」私は生成さ

mavenコマンドのsbbファイル mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate -DarchetypeCatalog=http://developer.opencloud.com/maven2/publicが正常に生成されました。

しかしときMVNでのビルドそれはクリーンインストール、それはエラー以下

の上に、私は、コマンドラインとEclipseの両方でクリーンMavenを実行すると、私はエラーの下になります私のpom.xml

<modelVersion>4.0.0</modelVersion> 
    <groupId>com.bt</groupId> 
    <artifactId>myapp-sbb</artifactId> 
    <packaging>jainslee-sbb-jar</packaging> 
    <version>1.0-SNAPSHOT</version> 
    <name>myapp SBB</name> 

    <dependencies> 
     <dependency> 
      <groupId>javax.slee</groupId> 
      <artifactId>jainslee-api</artifactId> 
      <version>1.1</version> 
     </dependency> 
     <dependency> 
      <groupId>com.opencloud</groupId> 
      <artifactId>jainslee-base-classes</artifactId> 
      <version>1.1</version> 
     </dependency> 
     <dependency> 
      <groupId>junit</groupId> 
      <artifactId>junit</artifactId> 
      <version>3.8.1</version> 
      <scope>test</scope> 
     </dependency> 
    </dependencies> 

    <build> 
     <resources> 
      <resource> 
       <directory>src/main/resources</directory> 
       <filtering>true</filtering> 
      </resource> 
     </resources> 

     <plugins> 
      <plugin> 
       <groupId>com.opencloud.maven.plugins</groupId> 
       <artifactId>maven-opencloud-jainslee-plugin</artifactId> 
       <extensions>true</extensions> 
       <version>1.1</version> 
       <configuration> 
        <jainsleeVersion>1.1</jainsleeVersion> 
        <createLibrary>true</createLibrary> 
        <createDeploymentUnit>true</createDeploymentUnit> 
       </configuration> 
      </plugin> 
     </plugins> 

    </build> 

ありましたたぶん

C:\Users\611542579\Documents\NOAS-CSG\Sample\com.bt>mvn clean

[INFO] Scanning for projects... 
[ERROR] The build could not read 1 project -> [Help 1] 
[ERROR] 
[ERROR] The project myApp:com.bt-sbb:1.0-SNAPSHOT 
     (C:\Users\611542579\Documents\NOAS-CSG\Sample\com.bt\pom.xml) has 2 errors 
[ERROR]  Unresolveable build extension: Error resolving version for plugin 
    'com.opencloud.maven.plugins:maven-opencloud-jainslee-plugin' 
     from the repositories 
     [local (C:\Users\611542579\.m2\repository), 
     central (http://repo.maven.apache.org/maven2)]: 
     Plugin not found in any plugin repository -> [Help 2] 
[ERROR]  Unknown packaging: jainslee-sbb-jar @ line 7, column 16 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException 
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/PluginVersionResolutionException 

答えて

0

ますあなたのポンポンでこのようなものが必要:

<pluginRepositories> 
    <pluginRepository> 
     <id>jainslee</id> 
     <name>Jainslee repos</name> 
     <url>http://developer.opencloud.com/maven2/public</url> 
     <releases> 
      <enabled>false</enabled> 
     </releases> 
    </pluginRepository> 
</pluginRepositories> 

この

http://developer.opencloud.com/maven2/public

は、コマンドラインに与えるものですが、それはまたあなたのポンポンでいるのですか?

また、でもローカルMavenレポに問題がある可能性があります。次のことを試してみてください。

対応するパスを見つけるあなたのローカルMavenのレポで

{HOME}/2 /リポジトリ/ COM/opencloud/Mavenの/プラグイン/ Mavenの-opencloud-jainslee-プラグイン

そのディレクトリを削除します。再試行する。

UPDATE:エラーメッセージ

[ERROR]  Unresolveable build extension: Error resolving version for plugin 
    'com.opencloud.maven.plugins:maven-opencloud-jainslee-plugin' 
     from the repositories 
     [local (C:\Users\611542579\.m2\repository), 
     central (http://repo.maven.apache.org/maven2)]: 
     Plugin not found in any plugin repository -> [Help 2] 

にこの部分を見てあなたはプラグインが最初の中央Mavenのリポジトリから、あなたの地元から検索されていることがわかります。そこには見つかりません。それはhttp://developer.opencloud.com/maven2/public

ここから検索しなければならないし、あなたのポンポンでその <pluginRepositories>部分が必要である理由です。

問題のPOMを編集できない場合は、ダミープロジェクトを作成し、このプロジェクトにプラグインリポジトリとプラグインを追加して、mvn installのように実行してください:プラグインをローカルリポジトリにダウンロードする必要があります。

多分、元のプロジェクトを問題なく実行することができます。

+0

こんにちはピルホ、お返事ありがとうございます。 mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate -DarchetypeCatalog = http://developer.opencloud.com/maven2/publicコマンドを実行すると、自動生成されたPOMです。他のシステムでも動作しています。しかし、私はこの問題を抱えているのは奇妙です。 –

+0

@chethanbhounsleygこれらの_system_sについての情報を提供するあなたの質問を編集できますか? – pirho

+0

@chethanbhounsleyg答えに私の更新を参照 – pirho

関連する問題