Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.eef.codegen.ecore/templates/model/build.propertiesjet')
-rw-r--r--plugins/org.eclipse.emf.eef.codegen.ecore/templates/model/build.propertiesjet38
1 files changed, 0 insertions, 38 deletions
diff --git a/plugins/org.eclipse.emf.eef.codegen.ecore/templates/model/build.propertiesjet b/plugins/org.eclipse.emf.eef.codegen.ecore/templates/model/build.propertiesjet
deleted file mode 100644
index 3a412747d..000000000
--- a/plugins/org.eclipse.emf.eef.codegen.ecore/templates/model/build.propertiesjet
+++ /dev/null
@@ -1,38 +0,0 @@
-<%@ jet package="org.eclipse.emf.codegen.ecore.templates.model" imports="org.eclipse.emf.codegen.ecore.genmodel.* java.util.*" class="BuildProperties" version="$Id: build.propertiesjet,v 1.2 2011/02/01 15:54:39 sbouchet Exp $" %>
-<%
-/**
- * <copyright>
- *
- * Copyright (c) 2002-2010 IBM Corporation and others.
- * 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:
- * IBM - Initial API and implementation
- *
- * </copyright>
- */
-%>
-<%GenModel genModel = (GenModel)argument;%>
-<%String pluginClassesLocation = genModel.isRuntimeJar() ? genModel.getModelPluginID()+".jar" : ".";%>
-<%List<String> sourceFolders = genModel.getModelSourceFolders();%>
-<%@ include file="../Header.propertiesjetinc"%>
-
-bin.includes = <%=pluginClassesLocation%>,\
- model/,\
-<%if (genModel.sameModelEditProject() || genModel.sameModelEditorProject()) {%>
- icons/,\
-<%}%>
-<%if (genModel.isBundleManifest()) {%>
- META-INF/,\
-<%}%>
-<%if (genModel.getRuntimePlatform() != GenRuntimePlatform.GWT) {%>
- plugin.xml,\
-<%}%>
- plugin.properties
-jars.compile.order = <%=pluginClassesLocation%>
-<% boolean first=true; for (Iterator<String> i = sourceFolders.iterator(); i.hasNext();) { String sourceFolder = i.next(); if (i.hasNext()){sourceFolder +=",\\";} if (first) {%>
-source.<%=pluginClassesLocation%> = <%=sourceFolder%><%first=false;} else {%><%=sourceFolder%><%}}%>
-output.<%=pluginClassesLocation%> = bin/

Back to the top