| <!-- |
| Copyright (c) 2004, 2023 IBM Corporation and others. |
| This program and the accompanying materials are made |
| available under the terms of the Eclipse Public License 2.0 |
| which accompanies this distribution, and is available at |
| https://www.eclipse.org/legal/epl-2.0/ |
| |
| SPDX-License-Identifier: EPL-2.0 |
| |
| Contributors: |
| IBM Corporation - initial API and implementation |
| --> |
| <project name="com.ibm.etools.emf.workbench" default="packagingPlugin" basedir="./.."> |
| <target name="init"> |
| <property name="packageDir" value=""/> |
| <property name="plugin.directory" value="${basedir}"/> |
| <property name="plugin.id" value="com.ibm.etools.ejb"/> |
| <property name="plugin.version" value=""/> |
| </target> |
| <target name="packagingPlugin" depends="init"> |
| <echo message="${plugin.id}"/> |
| <copy todir="${packageDir}/plugins/${plugin.id}_${plugin.version}"> |
| <fileset dir="${plugin.directory}"> |
| <include name="plugin.xml"/> |
| <include name="runtime/ejb.jar"/> |
| </fileset> |
| </copy> |
| </target> |
| </project> |