Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For birt-runtime-osgi copy javax.xml.soap jar to the lib folder #1347

Merged
merged 1 commit into from
Jun 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 23 additions & 15 deletions build/birt-packages/birt-runtime-osgi/build.xml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
<?xml version="1.0"?>
<!--
*******************************************************************************
* Copyright (c) 2021 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* See git history
*******************************************************************************
-->
<!--
*******************************************************************************
* Copyright (c) 2021 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* See git history
*******************************************************************************
-->
<project basedir=".">
<property name="BIRT_VERSION" value="4.5.0"/>
<property name="ROOT_DIR" location="../../../"/>
<property name="STAGE_DIR" location="./target/package"/>
<property name="ENGINE_DIR" location="${STAGE_DIR}/ReportEngine/"/>
<property name="VIEWER_DIR" location="${STAGE_DIR}/WebViewerExample"/>
<property name="PRODUCT_DIR" location="./target/products/org.eclipse.birt.engine.runtime/win32/win32/x86_64/ReportEngine"/>
<property name="REPOSITORY_DIR" location="./target/repository"/>
<!--
<property name="DESIGNER_DIR" location="${ROOT_DIR}/build/org.eclipse.birt.p2updatesite/target/products/org.eclipse.birt.designer/win32/win32/x86_64/designer"/>
-->
<target name="package" depends="build-report-engine, build-webviewer, build-webviewer-war">
<zip destfile="./target/birt-runtime-osgi-${BIRT_VERSION}.zip">
<fileset dir="${STAGE_DIR}"/>
Expand Down Expand Up @@ -70,13 +73,18 @@
<fileset dir="${ENGINE_DIR}/platform/plugins">
<include name="javax.wsdl_*.jar"/>
</fileset>
<fileset dir="${REPOSITORY_DIR}/plugins">
<include name="javax.xml.soap_*.jar"/>
</fileset>
<!--
<fileset dir="${DESIGNER_DIR}/plugins">
<include name="org.apache.commons.logging_*.jar"/>
<include name="org.apache.axis_*/lib/*.jar"/>
<include name="org.apache.commons.discovery_*/lib/*.jar"/>
<include name="javax.xml.rpc_*/lib/*.jar"/>
<include name="javax.xml.soap_*/lib/*.jar"/>
<include name="javax.xml.soap_*.jar"/>
</fileset>
-->
<flattenmapper/>
</copy>
<copy todir="${STAGE_DIR}">
Expand Down