okworx / eclipselink-staticweave-maven-plugin

Automatically exported from code.google.com/p/eclipselink-staticweave-maven-plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eclipselink-staticweave-maven-plugin

Automatically exported from code.google.com/p/eclipselink-staticweave-maven-plugin

Latest News

Release 1.0.4 adds support for working around an issue that can affect Eclipselink < 2.3.3 related to classloading and ASM. In certain scenarios, the weaver is unable to load classes and fails to weave correctly. To enable this workaround set includeProjectClasspath to true in your configuration:

    <plugin>
        <artifactId>eclipselink-staticweave-maven-plugin</artifactId>
        <groupId>au.com.alderaan</groupId>
        <version>1.0.4</version>
        <executions>
            <execution>
                <goals>
                    <goal>weave</goal>
                </goals>
                <phase>process-classes</phase>
                <configuration>
                    <logLevel>ALL</logLevel>
                    <includeProjectClasspath>true</includeProjectClasspath>
                </configuration>
            </execution>
        </executions>
        <dependencies>
            <dependency>
                <groupId>org.eclipse.persistence</groupId>
                <artifactId>eclipselink</artifactId>
                <version>2.3.2</version>
            </dependency>
        </dependencies>
    </plugin>

Latest News

Release 1.0.3 adds support for specifying the location/name of the persistence.xml file. E.g. META-INF/my-persistence.xml.

    <plugin>
    ...
        <configuration>
            <persistenceXMLLocation>META-INF/my-persistence.xml</persistenceXMLLocation>
        </configuration>
    ...
    </plugin>    

Latest News

Release 1.0.2 of the plugin has been updated to work correctly with Eclipselink 2.3.2. If you are using 2.2.X stick with version 1.0.1 of the plugin. For 2.3.X versions of Eclipselink other than 2.3.2, simply override with a <dependencies> block in the plugin config. e.g.

    <build>
        <plugins>
            <plugin>
                <artifactId>eclipselink-staticweave-maven-plugin</artifactId>
                <groupId>au.com.alderaan</groupId>
                <version>1.0.3</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>weave</goal>
                        </goals>
                        <phase>process-classes</phase>
                        <configuration>
                            <logLevel>ALL</logLevel>
                        </configuration>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.eclipse.persistence</groupId>
                        <artifactId>eclipselink</artifactId>
                        <version>2.3.1</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>

If you do this, remember that Eclipselink dependencies are not available in Central so you will probably need to add a reference to the Eclipselink Maven repo as well. e.g.

    <repositories>
        <repository>
            <id>eclipselink</id>
            <url>http://download.eclipse.org/rt/eclipselink/maven.repo/</url>
        </repository>
    </repositories>

Normal Usage

    <build>
        <plugins>
            <plugin>
                <artifactId>eclipselink-staticweave-maven-plugin</artifactId>
                <groupId>au.com.alderaan</groupId>
                <version>1.0.3</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>weave</goal>
                        </goals>
                        <phase>process-classes</phase>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

Configuration

Setting Description Default
source Location of the source JPA classes and persistence.xml file. ${project.build.outputDirectory}
target Destination for the weaved classes. ${project.build.outputDirectory}
persistenceXMLLocation Override where to find persistence.xml.
logLevel Log level (OFF SEVERE WARNING INFO CONFIG FINE FINER FINEST ALL) OFF

About

Automatically exported from code.google.com/p/eclipselink-staticweave-maven-plugin


Languages

Language:Java 100.0%