[181212]
diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 0000000..8ba8eed
--- /dev/null
+++ b/.cvsignore
@@ -0,0 +1 @@
+downloads
diff --git a/build/.cvsignore b/build/.cvsignore
new file mode 100644
index 0000000..79eb93b
--- /dev/null
+++ b/build/.cvsignore
@@ -0,0 +1 @@
+.htaccess
\ No newline at end of file
diff --git a/build/_common.php b/build/_common.php
new file mode 100755
index 0000000..73f9944
--- /dev/null
+++ b/build/_common.php
@@ -0,0 +1,24 @@
+<?php
+require_once ("../../../includes/buildServer-common.php");
+
+$options = array (
+	"BaseBuilderBranch" => "M4_33",
+	
+	"BranchAndJDK" => array (
+		"emf.torolab.ibm.com=------------,------------",
+		"0.8.0=HEAD,/opt/sun-java2-5.0",
+		#"0.7.3=R0_7_maintenance,/opt/sun-java2-1.4",
+		
+		"build.eclipse.org=------------,------------",
+		"0.8.0=HEAD,/opt/public/common/ibm-java2-ppc-50",
+		#"0.7.3=R0_7_maintenance,/opt/public/stp/apps/IBMJava2-ppc-142" // bug 178681
+	),
+	
+	"Mapfile_Rule_Default" => 0, // 0: "Use Map, No Tagging=use-false" or 1:"Generate Map, No Tagging=gen-false"
+
+	"EmailDefault" => "pelder@ca.ibm.com", // prefil email contact box with comma-sep'd list
+	
+	"Users" => array("pelder","pelder","pelder") /* build user, eclipse cvs user, IES cvs user */
+);
+
+?>
diff --git a/build/index.php b/build/index.php
new file mode 100755
index 0000000..912d64d
--- /dev/null
+++ b/build/index.php
@@ -0,0 +1 @@
+<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/build-common.php"); ?>
diff --git a/build/promo.php b/build/promo.php
new file mode 100755
index 0000000..3d5b264
--- /dev/null
+++ b/build/promo.php
@@ -0,0 +1 @@
+<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/promo-common.php"); ?>
diff --git a/project-info/contributors.html b/project-info/contributors.html
new file mode 100755
index 0000000..84ee254
--- /dev/null
+++ b/project-info/contributors.html
@@ -0,0 +1,5 @@
+<p>
+  <li>Paul Elder</li>
+  <li>Joel Cheuoua</li>
+  <li>Chris Gerken</li>
+</p>
diff --git a/project-info/overview.html b/project-info/overview.html
new file mode 100755
index 0000000..3e232ae
--- /dev/null
+++ b/project-info/overview.html
@@ -0,0 +1,19 @@
+<p>JET is typically used in the implementation of a "code generator". A code-generator is an important component of Model Driven Development (MDD).
+The goal of MDD is to describe a software system using abstract models (such as EMF/ECORE models or UML models), and then refine and
+transform these models into code. Although is possible to create abstract models, and manually transform them into code, the real power of MDD comes from automating this process.
+Such <b>transformations</b> accelerate the MDD process, and result in better code quality. The transformations can capture the "best practices" of experts, and can
+ensure that a project consistently employes these practices.</p>
+
+<p>However, transformations are not always perfect. Best practices are often dependent on context - what is optimal in one context may be
+suboptimal in another. Transformations can address this issue by including some mechanism for end-user modification of the code generator.
+This is frequently done by using "templates" to create artifacts, and allowing users to substitute their own implementations of these templates if necessary.
+This is the role of JET.</p>
+
+<p>This component provides:</p>
+<ol>
+	<li>Expand the JET language to support custom tags (which are distributed in "tag libraries"). (The language specification will be described in a separate document.)</li>
+	<li>Define Java interfaces and Eclipse Extension points for declaring custom tag libraries.</li>
+	<li>Provide Standard JET tag libraries that make it possible to create entire transformations without recourse to Java and the Eclipse APIs. (These tag libraries will be described in a separate document.)</li>
+	<li>Provide Eclipse API and UI for invoking such transformations.</li>
+	<li>Provide a JET template editor.</li>
+</ol>
diff --git a/project-info/project-page-paragraph.html b/project-info/project-page-paragraph.html
new file mode 100755
index 0000000..7bd1f71
--- /dev/null
+++ b/project-info/project-page-paragraph.html
@@ -0,0 +1,2 @@
+<p>The JET component provides code generation framework &amp; facilities that are used by EMF.
+JSP-like template files can be edited and transformed into any kind of source artifact including java, html, properties or xml files in a very simple way.</p>