Fixed classpath to depends only on plugin dependency. Modify build file for osgi deployment
This commit is contained in:
parent
d81e9f0bb7
commit
f12ad34c2c
|
@ -26,8 +26,6 @@
|
|||
<attribute name="org.eclipse.jst.component.dependency" value="../"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/tools"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
<!-- ============================================= -->
|
||||
<!-- jasperreport -->
|
||||
<!-- ============================================= -->
|
||||
|
||||
|
||||
<project name="JasperReportsTools" default="plugin" basedir=".">
|
||||
|
||||
<description>
|
||||
build jasper reports bundle for adempiere
|
||||
</description>
|
||||
|
||||
<!-- set global properties for this build -->
|
||||
<import file="../utils_dev/properties.xml"/>
|
||||
|
||||
<target name="clean" description="delete class directory">
|
||||
<delete>
|
||||
<fileset dir="../lib">
|
||||
<include name="org.adempiere.JasperReportsTools*.jar"/>
|
||||
</fileset>
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
<target name="plugin">
|
||||
<buildPlugin workspaceDirectory="${workspace}"
|
||||
projectName="JasperReportsTools"
|
||||
targetPlatformId="target.platform"
|
||||
destination="../lib"
|
||||
buildSourceJar="false"
|
||||
clean="no"/>
|
||||
</target>
|
||||
</project>
|
Loading…
Reference in New Issue