Menu

#6 Maven 2 plugin contenders

open
nobody
None
7
2006-05-03
2006-05-03
Felipe Leme
No

Here is an initial plugin submitted by Roger (user butenuth).

Discussion

  • Felipe Leme

    Felipe Leme - 2006-05-03

    M2 plugin sent by user butenuth

     
  • Felipe Leme

    Felipe Leme - 2006-05-03
    • summary: Maven2 plugin - patch by user be --> Maven 2 plugin contenders
     
  • Chris Hilton

    Chris Hilton - 2006-08-28

    Logged In: YES
    user_id=519709

    I have been using the attached plugin for a month or so
    without problems. I have made some modifications that I
    would like to contribute back and I would also like to make
    this plugin "official". In that vain, I am considering
    submitting the plugin to mojo.codehaus.org where all the
    cool M2-plugins-in-development hang out.

    I think that's all kosher with the licensing and stuff, but
    I would also like to give a chance for anyone to set me
    straight or express a different way to go about it. It seems
    there's been at least some wish to keep the plugin as an
    Emma team project. Anyway, all comments are welcome!

    Chris Hilton
    chilton@alterpoint.com

     
  • bgupta1

    bgupta1 - 2006-09-05

    Logged In: YES
    user_id=1591535

    I am running into the following error. It seems I am missing
    something very basic here for reporting.

    [INFO] [emma:report {execution: install}]
    [WARNING] Here is nothing to execute, only to report!

    Following is my entry in pom.xml

    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-emma-plugin</artifactId>
    <version>0.5</version>
    <executions>
    <execution>
    <id>compile</id>
    <phase>test-compile</phase>
    <goals>
    <goal>instr</goal>
    </goals>
    </execution>
    <execution>
    <id>test</id>
    <phase>test</phase>
    <goals>
    <goal>report</goal>
    </goals>
    </execution>

    </executions>

    <dependencies>
    <dependency>
    <groupId>org.apache.maven</groupId>
    <artifactId>maven-project</artifactId>
    <version>2.0</version>
    </dependency>

    <dependency>
    <groupId>org.apache.maven</groupId>
    <artifactId>maven-plugin-api</artifactId>
    <version>2.0</version>
    </dependency>

    <dependency>
    <groupId>org.apache.maven.reporting</groupId>
    <artifactId>maven-reporting-api</artifactId>
    <version>2.0</version>
    </dependency>

    <dependency>
    <groupId>emma</groupId>
    <artifactId>emma</artifactId>
    <version>2.0.5312</version>
    <type>jar</type>
    </dependency>
    </dependencies>
    </plugin>

     

Log in to post a comment.