converted libero package to osgi bundle.

This commit is contained in:
Heng Sin Low 2010-07-13 16:10:09 +08:00
parent ba8cd5fd8e
commit 714e66e64a
7 changed files with 119 additions and 0 deletions

7
liberoMfg/.classpath Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry exported="true" kind="lib" path="liberoMFG.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

28
liberoMfg/.project Normal file
View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>liberoMfg</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,8 @@
#Mon Jul 12 13:13:15 MYT 2010
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6

View File

@ -0,0 +1,4 @@
#Mon Jul 12 13:13:15 MYT 2010
eclipse.preferences.version=1
pluginProject.extensions=false
resolve.requirebundle=false

View File

@ -0,0 +1,31 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: org.adempiere.libero.mfg
Bundle-SymbolicName: org.adempiere.libero.mfg
Bundle-Version: 1.0.0
Bundle-ClassPath: liberoMFG.jar
Export-Package: it.cnr.imaa.essi.lablib.gui.checkboxtree,
org.adempiere.model.engines,
org.compiere.acct,
org.eevolution.exceptions,
org.eevolution.form,
org.eevolution.form.action,
org.eevolution.form.bom,
org.eevolution.form.bom.action,
org.eevolution.form.crp,
org.eevolution.form.tree,
org.eevolution.model,
org.eevolution.model.impl,
org.eevolution.model.reasoner,
org.eevolution.model.wrapper,
org.eevolution.msg,
org.eevolution.process,
org.eevolution.report,
org.eevolution.tools,
org.eevolution.tools.swing,
org.eevolution.tools.worker,
test.functional,
test.functional.mrp
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Fragment-Host: org.adempiere.base;bundle-version="0.0.0"
Eclipse-PatchFragment: true

View File

@ -0,0 +1,2 @@
bin.includes = META-INF/,\
liberoMFG.jar

39
liberoMfg/build.xml Normal file
View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================== -->
<!-- Adempiere Web Store Application -->
<!-- ======================================================== -->
<!-- $Header: /cvs/adempiere/webStore/build.xml,v 1.2 2006/06/10 21:59:22 jjanke Exp $-->
<project name="liberoMfg" default="plugin" basedir=".">
<!--<property environment="env"/>-->
<import file="../utils_dev/properties.xml"/>
<target name="init">
<echo message="=========== Libero Mfg Zk bundle"/>
</target>
<!-- =================================================================== -->
<!-- Creates the plugin -->
<!-- =================================================================== -->
<target name="plugin">
<buildPlugin workspaceDirectory="${workspace}"
projectName="liberoMfg"
targetPlatformId="target.platform"
destination="../lib"
buildSourceJar="false"
clean="no"/>
</target>
<!-- =================================================================== -->
<!-- Cleans up the current build -->
<!-- =================================================================== -->
<target name="clean">
<delete>
<fileset dir="../lib/plugins">
<include name="org.adempiere.libero.mfg*.jar"/>
</fileset>
</delete>
</target>
</project>