无法使用jcabi父pom构建

时间:2014-02-12 19:18:36

标签: java maven-3 aop aspectj jcabi

我正在尝试使用jcabi进行日志记录。据我所知,从http://www.jcabi.com/parent/index.html

中描述的jcabi pom文件继承我的pom更容易进行设置

但是我在“mvn clean install”上遇到以下错误错误(与解析版本号有关) 有关如何解决此问题的任何想法,或者不建议从jcabi pom文件继承

  [ERROR] Failed to execute goal org.codehaus.mojo:buildnumber-maven-plugin:1.2:
 create    (jcabi-build-number) on project cbm: Execution jcabi-build-number of
goalorg.codehaus.mojo:buildnumber-maven-plugin:1.2:create failed: Plugin org.codehaus
.mojo:buildnumber-maven-plugin:1.2 or one of its dependencies could not be resol
 ved: 

 Failed to collect dependencies at org.codehaus.mojo:buildnumber-maven-plugi
 n:jar:1.2 -> org.apache.maven.scm:maven-scm-api:jar:1.8 -> org.codehaus.plexus:p
 lexus-utils:jar:3.0.3: 

Failed to read artifact descriptor for org.codehaus.plexu
 s:plexus-utils:jar:3.0.3: Could not transfer artifact org.codehaus.plexus:plexus
  -utils:pom:3.0.3 from/to internal  ....

  org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal o
   rg.codehaus.mojo:buildnumber-maven-plugin:1.2:create (jcabi-build-number) on pro
 ject cbm: Execution jcabi-build-number of goal org.codehaus.mojo:buildnumber-mav
  en-plugin:1.2:create failed: Plugin org.codehaus.mojo:buildnumber-maven-plugin:1
2 or one of its dependencies could not be resolved: 

 Failed to collect dependencies at org.codehaus.mojo:buildnumber-maven-plugin:jar:1.2 
   ->         org.apache.maven.sc

1 个答案:

答案 0 :(得分:1)

如果与任何人相关,请在此处发布答案

        < dependencies>
           <dependency>
        <groupId>com.jcabi</groupId>
        <artifactId>jcabi-aspects</artifactId>
        <version>0.12</version>
    </dependency>
    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjrt</artifactId>
        <version>1.6.12</version>
        <scope>runtime</scope>
    </dependency>
          </dependencies>
       <build>
       <pluginManagement>
        <plugins>
               <plugin>
                <groupId>com.jcabi</groupId>
                <artifactId>jcabi-maven-plugin</artifactId>
                <version>0.8</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>ajc</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </pluginManagement>
</build>
相关问题