com:sun:tools:jar的相关性错误AspectJ Maven插件安装 [英] Dependency Error AspectJ Maven Plugin Installation For com:sun:tools:jar

查看:165
本文介绍了com:sun:tools:jar的相关性错误AspectJ Maven插件安装的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 https://github.com/ihsanhaikalz/testMaven上运行Maven项目在Eclipse 4.5(火星)中,但它在pom.xml中给我一个错误,如下所示:

I would like to run the Maven project that I have on https://github.com/ihsanhaikalz/testMaven in the Eclipse 4.5 (Mars) but it gave me an error in the pom.xml as follow:

1 problem was encountered while building the effective model for
 org.codehaus.mojo:aspectj-maven-plugin:1.8 [ERROR] 
'dependencies.dependency.systemPath' for com.sun:tools:jar must specify an
 absolute path but is ${toolsjarSystemPath} @

我已经通过 http://download.eclipse安装了Eclipse 4.5的AJDT .org/tools/ajdt/45/dev/update ,当我从github上退出时,Eclipse开始下载Maven插件连接器和AJDT的Maven集成,但错误仍然存​​在.我已经尝试遵循仍然没有运气.

I already installed AJDT for Eclipse 4.5 through http://download.eclipse.org/tools/ajdt/45/dev/update and when I pulled from my github the Eclipse started to download Maven plugin connectors and Maven integration for AJDT but the error is still there. I already tried follow this and this still no luck.

这是我的pom.xml

Here is my pom.xml

<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>testMaven</groupId>
    <artifactId>testMaven</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>

        <java.version>1.8</java.version>
        <aspectj.version>1.8.9</aspectj.version>
        <!-- Maven Plugin Versions -->
        <maven.compiler.plugin.version>3.2</maven.compiler.plugin.version>

    </properties>

    <repositories>
        <repository>
            <id>anon.inf.tu-dresden.de-snapshots</id>
            <url>http://anon.inf.tu-dresden.de/artifactory/repo/</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>${aspectj.version}</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjtools</artifactId>
            <version>${aspectj.version}</version>
        </dependency>
    </dependencies>

    <build>

        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>aspectj-maven-plugin</artifactId>
                <version>1.8</version>
                <configuration>
                    <complianceLevel>${java.version}</complianceLevel>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <showWeaveInfo>true</showWeaveInfo>
                </configuration>
                <executions>
                    <execution>
                        <id>AspectJ-Classes</id>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>AspectJ-Test-Classes</id>
                        <phase>process-test-classes</phase>
                        <goals>
                            <goal>test-compile</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjrt</artifactId>
                        <version>${aspectj.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjtools</artifactId>
                        <version>${aspectj.version}</version>
                    </dependency>
                </dependencies>
            </plugin>

            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>

    </build>
</project>

感谢您的帮助.谢谢

推荐答案

最后,我无法100%解决此问题,但我通过将Aspectj-maven-plugin的版本从1.8更改为1.7找到了该问题的替代解决方案.这是新的pom.xml的摘录:

In the end I could not solve this problem 100% but I found an alternative solution to this problem by changing the aspectj-maven-plugin's version from 1.8 to 1.7. Here is the excerpt of the new pom.xml:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>aspectj-maven-plugin</artifactId>
    <version>1.7</version>
    <configuration>
           <complianceLevel>${java.version}</complianceLevel>
           <source>${java.version}</source>
           <target>${java.version}</target>
           <showWeaveInfo>true</showWeaveInfo>
    </configuration>
    <executions>
           <execution>
                 <id>AspectJ-Classes</id>
                 <phase>process-classes</phase>
                 <goals>
                    <goal>compile</goal>
                 </goals>
           <execution>
   <execution>
   <id>AspectJ-Test-Classes</id>
   <phase>process-test-classes</phase>
   <goals>
       <goal>test-compile</goal>
       </goals>
   </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjrt</artifactId>
                        <version>${aspectj.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjtools</artifactId>
                        <version>${aspectj.version}</version>
                    </dependency>
                </dependencies>
            </plugin>

这篇关于com:sun:tools:jar的相关性错误AspectJ Maven插件安装的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆