Maven 3 伪影问题

2022-09-01 07:31:08

我在eclipse中使用struts2-archtype-starter做了一个新的支柱项目。

在我的项目中已经做了一些错误,然后再做任何事情。解决了大部分问题,但有1个仍然给我一些问题。

Missing artifact com.sun:tools:jar:1.5.0:system pom.xml

我试图手动将工具.jar添加到我的存储库中,但这并没有解决问题。

我的绒球看起来像这样

<?xml version="1.0" encoding="UTF-8" ?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.divespot</groupId>
    <artifactId>website</artifactId>
    <packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>E-Divespot diving community</name>
    <url>http://www.e-divespot.com</url>
    <description>A website to support divers from all around the world.</description>

    <dependencies>
        <!-- Junit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>

        <!--  Struts 2 -->
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-core</artifactId>
            <version>2.0.11.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-sitemesh-plugin</artifactId>
            <version>2.0.11.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-spring-plugin</artifactId>
            <version>2.0.11.2</version>
        </dependency>

        <!-- Servlet & Jsp -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.4</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>

        <!-- Jakarta Commons -->
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.1.1</version>
        </dependency>

        <!-- Dwr -->
        <dependency>
            <groupId>uk.ltd.getahead</groupId>
            <artifactId>dwr</artifactId>
            <version>1.1-beta-3</version>
        </dependency>
    </dependencies>

    <build>
      <finalName>website</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                   <source>1.6</source>
                   <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.mortbay.jetty</groupId>
                <artifactId>maven-jetty-plugin</artifactId>
                <version>6.1.5</version>
                <configuration>
                    <scanIntervalSeconds>10</scanIntervalSeconds>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

答案 1

您看到的错误可能是因为您没有正确设置JAVA_HOME路径。你看到类似的东西吗?C:\{directories to jre}\..\lib\tools.jar

您可以通过更改eclipse并添加类似的东西来使用内置的JDK.ini来启动eclipse。

-vm
C:\{directories to JDK}\bin\javaw.exe

我学到的是,默认情况下,日食将使用您的系统jre来启动日食。在启动日食时,您可能已经看到一条消息,类似于“Eclipse在JRE下运行,m2eclipse需要JDK,一些插件将无法正常工作”

如果您转到(在 eclipse 中)帮助 ->安装详细信息并查找 -vm,您可能会看到它指向没有预期的路径结构的位置。

注意:无论出于何种原因,当我遇到这个问题时,java.home在maven中是从eclipse启动的地方评估的。因此,当它试图从它所看到的java.home中提取工具时.jar它可能不是你实际设置为JAVA_HOME env/system变量的东西。


答案 2
<dependency>
    <groupId>org.apache.struts</groupId>
    <artifactId>struts2-core</artifactId>
    <version>${struts2.version}</version>
    <exclusions>
        <exclusion>
            <artifactId>tools</artifactId>
            <groupId>com.sun</groupId>
        </exclusion>
    </exclusions>
</dependency>

推荐