2010-06-10 98 views
2

我在安装机柜并使其工作时遇到问题。我遵循本指南http://www.enclojure.org/gettingstarted并成功安装了机箱(我认为)。但是,当我尝试构建示例应用程序(labrepl)时,出现一堆错误和构建失败。我很久没有使用Java了,而且我从未使用过Netbeans,而且这个错误似乎对我对这个领域有限的了解并不是很有帮助。我正在使用指南中的最新Netbeans和机箱URL。由于我在Windows上,因此我无法使用git克隆回购,因此我不确定要从这里执行什么操作。使用Netbeans安装机柜

无论如何,这里是错误信息。

WARNING: You are running embedded Maven builds, some build may fail due to incompatibilities with latest Maven release. 
     To set Maven instance to use for building, click here. 
Scanning for projects... 
[#process-resources] 
[resources:resources] 
Using default encoding to copy filtered resources. 
[#compile] 
[ERROR]Transitive dependency resolution for scope: compile has failed for your project. 
[ERROR]Error message: Missing: 
[ERROR]---------- 
[ERROR]1) org.clojure:clojure-contrib:jar:1.2.0-master-SNAPSHOT 
[ERROR] Try downloading the file manually from the project website. 
[ERROR] Then, install it using the command: 
[ERROR]  mvn install:install-file -DgroupId=org.clojure -DartifactId=clojure-contrib -Dversion=1.2.0-master-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file 
[ERROR] Alternatively, if you host your own repository you can deploy the file there: 
[ERROR]  mvn deploy:deploy-file -DgroupId=org.clojure -DartifactId=clojure-contrib -Dversion=1.2.0-master-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] 
[ERROR] Path to dependency: 
[ERROR]   1) labrepl:labrepl:jar:0.0.1 
[ERROR]   2) org.clojure:clojure-contrib:jar:1.2.0-master-SNAPSHOT 
[ERROR]---------- 
[ERROR]1 required artifact is missing. 
[ERROR]for artifact: 
[ERROR] labrepl:labrepl:jar:0.0.1 
[ERROR]from the specified remote repositories: 
[ERROR] central (http://repo1.maven.org/maven2), 
[ERROR] clojars (http://clojars.org/repo/), 
[ERROR] incanter (http://repo.incanter.org), 
[ERROR] clojure-snapshots (http://build.clojure.org/snapshots), 
[ERROR] clojure (http://build.clojure.org/releases), 
[ERROR] clojure-releases (http://build.clojure.org/releases) 
[ERROR]Group-Id: labrepl 
[ERROR]Artifact-Id: labrepl 
[ERROR]Version: 0.0.1 
[ERROR]From file: C:\Users\chloey\Documents\NetBeansProjects\RelevanceLabRepl\pom.xml 
------------------------------------------------------------------------ 
For more information, run with the -e flag 
------------------------------------------------------------------------ 
BUILD FAILED 
------------------------------------------------------------------------ 
Total time: 1 second 
Finished at: Wed Jun 09 21:53:04 CDT 2010 
Final Memory: 72M/172M 
------------------------------------------------------------------------ 

谢谢大家。

+0

正确的拼写是“Enclojure”,而不是“Enclosure”。我无权自行编辑此内容。 – Sergey 2010-06-10 22:30:23

回答

0

失落的神器是神器本身。你用什么命令来构建它?如果一切都失败,请在命令行上尝试mvn clean install

0

我有同样的问题,所以我做了一个干净安装的Netbeans,然后安装Maven都无济于事。

当我去下载缺失的神器时,我发现clojure-contrib版本1.2.0不能下载。更改pom.xml以查找版本1.1.0导致构建成功。

打开pom.xml的

<dependency> 
    <groupId>org.clojure</groupId> 
    <artifactId>clojure-contrib</artifactId> 
    <version>1.2.0-master-SNAPSHOT</version> 
</dependency> 

<dependency> 
    <groupId>org.clojure</groupId> 
    <artifactId>clojure-contrib</artifactId> 
    <version>1.1.0-master-SNAPSHOT</version> 
</dependency> 

到的东西是需要labrepl从哪里下载它不知道内1.2.0一些附加功能的外观。