[hibernate-issues] [Hibernate-JIRA] Created: (METAGEN-32) Update the documentation regarding the usage of the maven-processor-plugin

Hardy Ferentschik (JIRA) noreply at atlassian.com
Wed May 5 09:32:06 EDT 2010


Update the documentation regarding the usage of the maven-processor-plugin
--------------------------------------------------------------------------

                 Key: METAGEN-32
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/METAGEN-32
             Project: Hibernate Metamodel Generator
          Issue Type: Task
          Components: build, documentation
    Affects Versions: 1.0.0.Final
            Reporter: Hardy Ferentschik
            Assignee: Hardy Ferentschik
             Fix For: 1.1.0


The plugin allows now to configure the ap dependency as a plugin dependency instead of a project dependency - http://code.google.com/p/maven-annotation-plugin/issues/detail?id=20
For example:
{code}
<plugin>
    <groupId>org.bsc.maven</groupId>
    <artifactId>maven-processor-plugin</artifactId>
    <version>1.3.4</version>
    <executions>
        <execution>
            <id>process</id>
            <goals>
                <goal>process</goal>
            </goals>
            <phase>process-sources</phase>
        </execution>
    </executions>
    <dependencies>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator-annotation-processor</artifactId>
            <version>4.1.0.GA</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</plugin>
{code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list