Ich benutze Maven in meinem Web-Projekt das ist, wie meine pom.xml aussieht Ich benutze Eclipse Juno, mit Apache Tomcat 7, ich runnning Windows XP OS , "C: \ Programme \ Java \ jdk1.6.0_23 \ lib" ist, wo meine Werkzeuge jar ist.Ich versuchte es in pom.xml hartcodieren, aber es war klar, cant hart code.tried die unten mit Profilen noch immer gleichen Fehler "Vermisst Artefakt com.sun: Werkzeuge: jar: 1.5.0" bitte bitte helfen ich seit 1 Woche habe es satt googelnFehlendes Artefakt com.sun: Werkzeuge: jar: 1.5.0 maven
</dependencies>
<profiles>
<profile>
<id>default-tools.jar</id>
<activation>
<property>
<name>java.vendor</name>
<value>Sun Microsystems Inc.</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
I:\eclipse-jee-juno-RC3-win32\workspace\MYProject>mvn clean install
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building MYProject 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.594s
[INFO] Finished at: Sat Feb 23 20:49:53 GMT+05:30 2013
[INFO] Final Memory: 3M/15M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project MYProject: Could not resolve dependencies for project MYProject:MYProject:war:0.0.1-SNAPSHOT: Failure to find com.sun:tools:jar:1
.5.0 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[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/DependencyResolutionException
'cmd' is not recognized as an internal or external command,
operable program or batch file.
I:\eclipse-jee-juno-RC3-win32\workspace\MYProject>
Das von Ihnen gepostete Protokoll scheint nicht mit dem von Ihnen beschriebenen Problem verknüpft zu sein. Sie haben einen Fehler während der Reinigungsphase. Die Datei 'Company.hbm.xml' wird derzeit wahrscheinlich von einem anderen Prozess verwendet. – ben75
@ ben75 Sie haben Recht, ich habe das Problem behoben, jetzt bekomme ich com.sun: Werkzeuge: Jar-Problem können Sie überprüfen, ich habe meinen Beitrag bearbeitet – HkFreaKuser1673718
Ihr Systempfad sieht verdächtig aus. Ich denke, seine $ {java.home} /lib/tools.jar. Übrigens. Ist Ihr JAVA_HOME korrekt eingestellt? –