diff options
author | pelder | 2006-05-24 16:26:54 -0400 |
---|---|---|
committer | pelder | 2006-05-24 16:26:54 -0400 |
commit | 5097864833e1998fcfca4484fec648874be475c1 (patch) | |
tree | 7d47523c2ba87b1fdf29110c8f3027c1e6064611 /doc/org.eclipse.jet.doc/gettingStarted/deployingTransforms.xhtml | |
parent | 06878ec7852c0d73d0e8cffaa70350d77fe6751c (diff) | |
download | org.eclipse.jet-5097864833e1998fcfca4484fec648874be475c1.tar.gz org.eclipse.jet-5097864833e1998fcfca4484fec648874be475c1.tar.xz org.eclipse.jet-5097864833e1998fcfca4484fec648874be475c1.zip |
[143581] Provide "Getting Started" documentation for JET.
Diffstat (limited to 'doc/org.eclipse.jet.doc/gettingStarted/deployingTransforms.xhtml')
-rw-r--r-- | doc/org.eclipse.jet.doc/gettingStarted/deployingTransforms.xhtml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/org.eclipse.jet.doc/gettingStarted/deployingTransforms.xhtml b/doc/org.eclipse.jet.doc/gettingStarted/deployingTransforms.xhtml new file mode 100644 index 0000000..084e564 --- /dev/null +++ b/doc/org.eclipse.jet.doc/gettingStarted/deployingTransforms.xhtml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="ISO-8859-1" ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta name="copyright" content="Copyright (c) IBM Corporation and others 2006. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." /> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> +<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css"/> +<title>Deploy a JET Transforms</title> +</head> +<body> +<h2>Deploying JET Transforms</h2> +<p>Once a JET transform is complete, it can be shared with other users. There are a number of possibilities: +<ul> + <li> Share the JET Project via a Team environment </li> + <li> <a href="#exportProject">Export the JET Project</a> to a "Deployable JAR", and place it in a common file system location, and have + others reference that location in the Preferences dialog (Preference category <b>EMFT JET Transforms</b>.</li> + <li> Use the <a href="../references/extensionpoints/org_eclipse_jet_deployedTransforms.html">org.eclipse.jet.deployedTransforms</a> + extension point to share an exported JET Project via a standard Eclipse plug-in.</li> + <li> Include the JET Project in an Eclipse Feature. (JET Projects are Eclipse plug-ins.)</li> +</ul> +The latter two options require some knowledge of the Eclipse Plug-in Development Environment (PDE). +</p> +<h3>Exporting a JET Project a Deployable JAR</h3> +<p> +Creating deployable JET transforms makes use of the Eclipse PDE Deployable plug-ins export wizard: +<ul> + <li> Right-click over the JET project, and choose <b>Export...</b>. </li> + <li> Select <b>Plug-in Development -> Deployable plug-ins and fragments</b>, and click <b>Next</b>. </li> + <li> Click <b>Browse...</b> to select the directory to contain the exported JAR file.</li> + <li> Click <b>Finish</b>.</li> +</ul> +The JAR file will be exported to a subdirectory called <code>plugins</code>. The JAR file itself will be of the form: +<br/><br/> + <code><i>id</i>_<i>version</i>.jar</code>. +</body> +</html> |