1

「Drools JBoss Rules 5.0 Developer's Guide」から例を作成しようとしているときに、奇妙な問題が発生しました。readme ファイルから段階的な手順を実行して、この例を実行しようとしました (同様の手順はhttp://code.google.com/p/droolsbook/にあります) 。

次のログを取得します。

コマンド: mvn eclipse:eclipse -DdownloadSources=true

[INFO] Scanning for projects...                                                                                                                                                                                                              
[INFO] Reactor build order:                                                                                                                                                                                                                  
[INFO]   Drools Book Parent                                                                                                                                                                                                                  
[INFO]   Banking Core                                                                                                                                                                                                                        
[INFO]   Validation                                                                                                                                                                                                                          
[INFO]   ETL with iBatis                                                                                                                                                                                                                     
[INFO]   DSL                                                                                                                                                                                                                                 
[INFO]   Decision Tables                                                                                                                                                                                                                     
[INFO]   Ruleflow                                                                                                                                                                                                                            
[INFO]   Stateful Rules                                                                                                                                                                                                                      
[INFO]   Complex Event Processing                                                                                                                                                                                                            
[INFO]   Drools Flow                                                                                                                                                                                                                         
[INFO]   Integration                                                                                                                                                                                                                         
[INFO]   Sample Application                                                                                                                                                                                                                  
[INFO]   Testing                                                                                                                                                                                                                             
[INFO]   Performance                                                                                                                                                                                                                         
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.0.2/maven-compiler-plugin-2.0.2.pom                                                                                                              
[WARNING] Unable to get resource 'org.apache.maven.plugins:maven-compiler-plugin:pom:2.0.2' from repository central (http://repo1.maven.org/maven2): Error transferring file: repo1.maven.org                                                
Downloading: http://repository.jboss.com/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.0.2/maven-compiler-plugin-2.0.2.pom                                                                                                         
[WARNING] Unable to get resource 'org.apache.maven.plugins:maven-compiler-plugin:pom:2.0.2' from repository repository.jboss.com (http://repository.jboss.com/maven2): Authorization failed: Access denied to: http://repository.jboss.com/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.0.2/maven-compiler-plugin-2.0.2.pom                                                                                                                                                    
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.0.2/maven-compiler-plugin-2.0.2.pom                                                                                                              
[WARNING] Unable to get resource 'org.apache.maven.plugins:maven-compiler-plugin:pom:2.0.2' from repository central (http://repo1.maven.org/maven2): Error transferring file: repo1.maven.org                                                
[INFO] ------------------------------------------------------------------------                                                                                                                                                              
[ERROR] BUILD ERROR                                                                                                                                                                                                                          
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).


Project ID: org.apache.maven.plugins:maven-compiler-plugin

Reason: POM 'org.apache.maven.plugins:maven-compiler-plugin' not found in repository: Unable to download the artifact from any repository

  org.apache.maven.plugins:maven-compiler-plugin:pom:2.0.2

from the specified remote repositories:
  repository.jboss.com (http://repository.jboss.com/maven2),
  central (http://repo1.maven.org/maven2)

 for project org.apache.maven.plugins:maven-compiler-plugin


[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 21 seconds
[INFO] Finished at: Fri Apr 26 14:41:02 CEST 2013
[INFO] Final Memory: 6M/119M
[INFO] ------------------------------------------------------------------------

「mvn clean install」( http://pastebin.com/FHQ4QqBH )を実行すると、同様のエラーが発生します。

ガドンさん、アドバイスありがとうございます。

4

2 に答える 2

0

あなたの問題は Drools に関係しているのではなく、Maven Central Repository への接続の構成に関係していると思います。ご覧のとおり、maven コンパイラ プラグインをダウンロードできません。接続を確認してください。

于 2013-05-11T20:37:18.053 に答える
0

さて、しばらく経ちましたが、短いチュートリアルに従って、本からサンプルアプリケーションを実行するのに問題がある他の人 (私のように経験不足のため) のために.

  1. Maven >= 3.0.4 を使用してください。
  2. README の手順に従います。
  3. spring フレームワークをダウンロードし、それらから spring-form.tld を WEB-INF\ にコピーします。
  4. ビルド パス jstl jar に追加します。
  5. jstl jar を WEB-INF\lib にコピーします。
  6. Tomcat サーバーでアプリケーションを実行します。

お役に立てれば。

于 2013-10-04T21:35:02.240 に答える