converted libero package to osgi bundle.
This commit is contained in:
parent
f12ad34c2c
commit
ba8cd5fd8e
|
@ -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="liberoHR.jar"/>
|
||||||
|
<classpathentry kind="output" path="bin"/>
|
||||||
|
</classpath>
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>liberoHR</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>
|
|
@ -0,0 +1,8 @@
|
||||||
|
#Mon Jul 12 13:11:19 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
|
|
@ -0,0 +1,4 @@
|
||||||
|
#Mon Jul 12 13:11:19 MYT 2010
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
pluginProject.extensions=false
|
||||||
|
resolve.requirebundle=false
|
|
@ -0,0 +1,13 @@
|
||||||
|
Manifest-Version: 1.0
|
||||||
|
Bundle-ManifestVersion: 2
|
||||||
|
Bundle-Name: org.adempiere.libero.hr
|
||||||
|
Bundle-SymbolicName: org.adempiere.libero.hr
|
||||||
|
Bundle-Version: 1.0.0
|
||||||
|
Bundle-ClassPath: liberoHR.jar
|
||||||
|
Export-Package: org.compiere.acct,
|
||||||
|
org.eevolution.form,
|
||||||
|
org.eevolution.model,
|
||||||
|
org.eevolution.process
|
||||||
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||||
|
Fragment-Host: org.adempiere.base;bundle-version="0.0.0"
|
||||||
|
Eclipse-PatchFragment: true
|
|
@ -0,0 +1,2 @@
|
||||||
|
bin.includes = META-INF/,\
|
||||||
|
liberoHR.jar
|
|
@ -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>
|
Loading…
Reference in New Issue