Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfullbright2011-02-09 22:40:38 +0000
committerpfullbright2011-02-09 22:40:38 +0000
commit770d9fe6ce24bd7fc3406a80ef7d1101e4bcc19a (patch)
treef304927e5280a22585d0e049b10d8e8af941f709 /common/plugins/org.eclipse.jpt.common.eclipselink.core/plugin.xml
parent66f5d80f420f692bcd873b041c6c776ad0c954c8 (diff)
downloadwebtools.dali-770d9fe6ce24bd7fc3406a80ef7d1101e4bcc19a.tar.gz
webtools.dali-770d9fe6ce24bd7fc3406a80ef7d1101e4bcc19a.tar.xz
webtools.dali-770d9fe6ce24bd7fc3406a80ef7d1101e4bcc19a.zip
added common eclipselink plugin
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.eclipselink.core/plugin.xml')
-rw-r--r--common/plugins/org.eclipse.jpt.common.eclipselink.core/plugin.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.eclipselink.core/plugin.xml b/common/plugins/org.eclipse.jpt.common.eclipselink.core/plugin.xml
new file mode 100644
index 0000000000..ccffee1ecb
--- /dev/null
+++ b/common/plugins/org.eclipse.jpt.common.eclipselink.core/plugin.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<!--
+ Copyright (c) 2011 Oracle. All rights reserved.
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0, which accompanies this distribution
+ and is available at http://www.eclipse.org/legal/epl-v10.html.
+
+ Contributors:
+ Oracle - initial API and implementation
+ -->
+
+<plugin>
+
+ <!--
+ ******************************************
+ * Library Provider Framework Integration *
+ ******************************************
+ -->
+
+ <extension point="org.eclipse.jst.common.project.facet.core.downloadableLibraries">
+
+ <import-definitions
+ url="http://www.eclipse.org/webtools/dali/dev/eclipselink/eclipselink-downloadable-libs.xml">
+ <enablement>
+ <with variable="requestingProjectFacet">
+ <or>
+ <test
+ property="org.eclipse.wst.common.project.facet.core.projectFacet"
+ value="jpt.jaxb"
+ forcePluginActivation="true"/>
+ <test
+ property="org.eclipse.wst.common.project.facet.core.projectFacet"
+ value="jpt.jpa"
+ forcePluginActivation="true"/>
+ </or>
+ </with>
+ </enablement>
+ </import-definitions>
+
+ </extension>
+
+</plugin>

Back to the top