我可以通过pom.xml将Aspect J jar添加到Maven项目中吗?

时间:2011-06-19 09:20:01

标签: maven pom.xml

我想知道我是否可以将Aspect J添加到Maven项目中,因为它似乎没有公共存储库可以将它添加到pom.xml。

<dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>${junit.version}</version>
      <scope>test</scope>
    </dependency>

1 个答案:

答案 0 :(得分:1)

    <dependency>
        <groupId>aspectj</groupId>
        <artifactId>aspectjrt</artifactId>
        <version>${aspectjrt.version}</version>
    </dependency>
    <dependency>
        <groupId>aspectj</groupId>
        <artifactId>aspectjweaver</artifactId>
        <version>${aspectjweaver.version}</version>
    </dependency>

版本为1.5.3,取决于您要使用的版本。