Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseLink/Maven/GlassFish

< EclipseLink‎ | Maven
Revision as of 07:34, 27 August 2012 by Douglas.clarke.oracle.com (Talk | contribs) (New page: == Installing EclipseLink 2.4 into GlassFish using Maven == This page documents how to upgrade the EclipseLink version packaged in GlassFish to the latest 2.4 release. === pom.xml === ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Installing EclipseLink 2.4 into GlassFish using Maven

This page documents how to upgrade the EclipseLink version packaged in GlassFish to the latest 2.4 release.

pom.xml

You will need the following sections in your pom.xml:


<plugin>
	<artifactId>maven-clean-plugin</artifactId>
	<version>2.5</version>
	<configuration>
		<filesets>
			<fileset>
				<directory>${glassfish.modules}</directory>
				<includes>
					<include>org.eclipse.persistence.*.jar</include>
				</includes>
				<followSymlinks>false</followSymlinks>
			</fileset>
		</filesets>
	</configuration>
</plugin>

Copyright © Eclipse Foundation, Inc. All Rights Reserved.