From 1ea24f6d8117f7e40c00f7c951ce3a2d6d4e5870 Mon Sep 17 00:00:00 2001 From: Ed Merks Date: Mon, 25 Mar 2024 15:55:06 +0100 Subject: [PATCH] Remove the RCP product Remove other unused build infrastructure: - birt-integration-test - birt-publish --- .../birt-integration-test/.gitignore | 1 - .../birt-integration-test/pom.xml | 150 --------- .../src/test/java/MainIT.java | 61 ---- build/birt-packages/birt-publish/.project | 17 - .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.m2e.core.prefs | 4 - build/birt-packages/birt-publish/pom.xml | 83 ----- .../birt-packages/birt-report-rcp/.gitignore | 1 - build/birt-packages/birt-report-rcp/.project | 23 -- .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.m2e.core.prefs | 4 - .../birt-report-rcp/BIRT.product | 311 ------------------ .../birt-report-rcp/images/birt.ico | Bin 292878 -> 0 bytes build/birt-packages/birt-report-rcp/pom.xml | 102 ------ build/birt-packages/pom.xml | 3 - promotion/pom.xml | 5 - 16 files changed, 769 deletions(-) delete mode 100644 build/birt-packages/birt-integration-test/.gitignore delete mode 100644 build/birt-packages/birt-integration-test/pom.xml delete mode 100644 build/birt-packages/birt-integration-test/src/test/java/MainIT.java delete mode 100644 build/birt-packages/birt-publish/.project delete mode 100644 build/birt-packages/birt-publish/.settings/org.eclipse.core.resources.prefs delete mode 100644 build/birt-packages/birt-publish/.settings/org.eclipse.m2e.core.prefs delete mode 100644 build/birt-packages/birt-publish/pom.xml delete mode 100644 build/birt-packages/birt-report-rcp/.gitignore delete mode 100644 build/birt-packages/birt-report-rcp/.project delete mode 100644 build/birt-packages/birt-report-rcp/.settings/org.eclipse.core.resources.prefs delete mode 100644 build/birt-packages/birt-report-rcp/.settings/org.eclipse.m2e.core.prefs delete mode 100644 build/birt-packages/birt-report-rcp/BIRT.product delete mode 100644 build/birt-packages/birt-report-rcp/images/birt.ico delete mode 100644 build/birt-packages/birt-report-rcp/pom.xml diff --git a/build/birt-packages/birt-integration-test/.gitignore b/build/birt-packages/birt-integration-test/.gitignore deleted file mode 100644 index eb5a316cbd1..00000000000 --- a/build/birt-packages/birt-integration-test/.gitignore +++ /dev/null @@ -1 +0,0 @@ -target diff --git a/build/birt-packages/birt-integration-test/pom.xml b/build/birt-packages/birt-integration-test/pom.xml deleted file mode 100644 index 2ca70c287fb..00000000000 --- a/build/birt-packages/birt-integration-test/pom.xml +++ /dev/null @@ -1,150 +0,0 @@ - - - - 4.0.0 - - org.eclipse.birt.build.package - org.eclipse.birt.build.package-parent - 4.14.0-SNAPSHOT - .. - - org.eclipse.birt - birt-integration-test - pom - - ${project.parent.basedir} - - - - junit - junit - 3.8.1 - test - - - org.seleniumhq.selenium - selenium-java - 2.53.0 - - - com.github.detro - phantomjsdriver - 1.2.0 - test - - - - - - com.github.klieber - phantomjs-maven-plugin - 0.7 - - - - install - - - - - 1.9.0 - true - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - - test-compile - - testCompile - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.19.1 - - - ${phantomjs.binary} - - - - - integration-test - integration-test - - integration-test - - - - none - - - **/*IT.java - - - - - verify - - verify - - - - - - org.eclipse.jetty - jetty-maven-plugin - ${jetty.version} - - ${birtpackages.basedir}/birt-runtime-osgi/target/package/birt.war - 10 - foo - 8090 - - 9999 - - - - - start-jetty - pre-integration-test - - deploy-war - - - true - manual - - - - jetty-stop - - stop - - post-integration-test - - - - - - - diff --git a/build/birt-packages/birt-integration-test/src/test/java/MainIT.java b/build/birt-packages/birt-integration-test/src/test/java/MainIT.java deleted file mode 100644 index 3c1e9533531..00000000000 --- a/build/birt-packages/birt-integration-test/src/test/java/MainIT.java +++ /dev/null @@ -1,61 +0,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 - *******************************************************************************/ - -import junit.framework.TestCase; -import static junit.framework.Assert.assertEquals; -import static junit.framework.Assert.assertTrue; - -import org.openqa.selenium.By; -import org.openqa.selenium.WebDriver; -import org.openqa.selenium.WebElement; -import org.openqa.selenium.phantomjs.PhantomJSDriver; -import org.openqa.selenium.support.ui.ExpectedCondition; -import org.openqa.selenium.support.ui.WebDriverWait; - - -public class MainIT extends TestCase { - public void testExecute() - throws Exception - { - System.setProperty("phantomjs.binary.path", System.getProperty("phantomjs.binary")); - WebDriver driver = new PhantomJSDriver(); - - // And now use this to visit birt report viewer - driver.get("http://localhost:9999"); - - // Check the title of the page - assertEquals("Eclipse BIRT Home", driver.getTitle()); - - // Click view exmaple button - WebElement element = driver.findElement(By.linkText("View Example")); - element.click(); - - // Wait until page loaded - (new WebDriverWait(driver, 10)).until(new ExpectedCondition() { - public Boolean apply(WebDriver d) { - - // Check the title of loaded page - assertEquals("BIRT Report Viewer", d.getTitle()); - - - // Check the success message - assertTrue(d.getPageSource().contains("Congratulations!")); - return true; - } - }); - - //Close the browser - driver.quit(); - } - -} diff --git a/build/birt-packages/birt-publish/.project b/build/birt-packages/birt-publish/.project deleted file mode 100644 index 383bcfa2e68..00000000000 --- a/build/birt-packages/birt-publish/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - birt-publish - - - - - - org.eclipse.m2e.core.maven2Builder - - - - - - org.eclipse.m2e.core.maven2Nature - - diff --git a/build/birt-packages/birt-publish/.settings/org.eclipse.core.resources.prefs b/build/birt-packages/birt-publish/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c0203a..00000000000 --- a/build/birt-packages/birt-publish/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/build/birt-packages/birt-publish/.settings/org.eclipse.m2e.core.prefs b/build/birt-packages/birt-publish/.settings/org.eclipse.m2e.core.prefs deleted file mode 100644 index f897a7f1cb2..00000000000 --- a/build/birt-packages/birt-publish/.settings/org.eclipse.m2e.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -activeProfiles= -eclipse.preferences.version=1 -resolveWorkspaceProjects=true -version=1 diff --git a/build/birt-packages/birt-publish/pom.xml b/build/birt-packages/birt-publish/pom.xml deleted file mode 100644 index 96ace5e2e7b..00000000000 --- a/build/birt-packages/birt-publish/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - 4.0.0 - - org.eclipse.birt.build.package - org.eclipse.birt.build.package-parent - 4.15.0-SNAPSHOT - .. - - org.eclipse.birt - birt-publish - pom - - - - publish - - - ${project.basedir} - I - ${release.type}-R1-${birt.version}-${maven.build.timestamp} - ${release.base.dir}/downloads/drops/${release.package.dir} - ${release.base.dir}/update-site/${eclipse.release.name}-interim - - - - - maven-antrun-plugin - ${antrun.version} - - - publish - install - - - - - - - - - - - - - - - - - - - - - - - - - - run - - - - - - - - - diff --git a/build/birt-packages/birt-report-rcp/.gitignore b/build/birt-packages/birt-report-rcp/.gitignore deleted file mode 100644 index eb5a316cbd1..00000000000 --- a/build/birt-packages/birt-report-rcp/.gitignore +++ /dev/null @@ -1 +0,0 @@ -target diff --git a/build/birt-packages/birt-report-rcp/.project b/build/birt-packages/birt-report-rcp/.project deleted file mode 100644 index e7e1031ccbb..00000000000 --- a/build/birt-packages/birt-report-rcp/.project +++ /dev/null @@ -1,23 +0,0 @@ - - - org.eclipse.birt.report.designer.rcp - - - - - - org.eclipse.pde.FeatureBuilder - - - - - org.eclipse.m2e.core.maven2Builder - - - - - - org.eclipse.m2e.core.maven2Nature - org.eclipse.pde.FeatureNature - - diff --git a/build/birt-packages/birt-report-rcp/.settings/org.eclipse.core.resources.prefs b/build/birt-packages/birt-report-rcp/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c0203a..00000000000 --- a/build/birt-packages/birt-report-rcp/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/build/birt-packages/birt-report-rcp/.settings/org.eclipse.m2e.core.prefs b/build/birt-packages/birt-report-rcp/.settings/org.eclipse.m2e.core.prefs deleted file mode 100644 index f897a7f1cb2..00000000000 --- a/build/birt-packages/birt-report-rcp/.settings/org.eclipse.m2e.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -activeProfiles= -eclipse.preferences.version=1 -resolveWorkspaceProjects=true -version=1 diff --git a/build/birt-packages/birt-report-rcp/BIRT.product b/build/birt-packages/birt-report-rcp/BIRT.product deleted file mode 100644 index 3ef6a7ab0ca..00000000000 --- a/build/birt-packages/birt-report-rcp/BIRT.product +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - BIRT: Business Intelligence Reporting Tool - -With BIRT you can create data visualizations, dashboards and reports -that can be embedded into web applications and rich clients. - -BIRT is maintained by a small number of volunteers. Please consider -contributing. The contribution guide can be found here: - -https://github.com/eclipse-birt/birt/blob/master/CONTRIBUTING.md - - -BIRT is an open source project under control of the Eclipse Foundation - -- Support: https://github.com/eclipse-birt/birt/discussions -- Issues: https://github.com/eclipse-birt/birt/issues -- Website https://eclipse.org/birt -- Source: https://github.com/eclipse-birt/birt - - - -Powered by the Eclipse Platform: https://eclipse.org/eclipse - - - - - - - - -perspective org.eclipse.birt.report.designer.ui.ReportRCPPerspective --product org.eclipse.birt.report.designer.ui.rcp.BIRT - - -Xms512m --Xmx1024m - - -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts - - - - - - - - - - - - - - - - - - http://eclipse.org/legal/epl/notice.php - - Eclipse Foundation Software User Agreement - -November 22, 2017 - -Usage Of Content - -THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION -AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF -THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE -TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED -BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED -BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE -AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE -TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY -APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU -MAY NOT USE THE CONTENT. - -Applicable Licenses - -Unless otherwise indicated, all Content made available by the Eclipse Foundation -is provided to you under the terms and conditions of the Eclipse Public License -Version 2.0 ("EPL"). A copy of the EPL is provided with this Content and is also -available at http://www.eclipse.org/legal/epl-2.0. For purposes of the EPL, -"Program" will mean the Content. - -Content includes, but is not limited to, source code, object code, documentation -and other files maintained in the Eclipse Foundation source code repository -("Repository") in software modules ("Modules") and made available as -downloadable archives ("Downloads"). - -- Content may be structured and packaged into modules to facilitate - delivering, extending, and upgrading the Content. Typical modules may - include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and - features ("Features"). -- Each Plug-in or Fragment may be packaged as a sub-directory or JAR - (Java™ ARchive) in a directory named "plugins". -- A Feature is a bundle of one or more Plug-ins and/or Fragments and - associated material. Each Feature may be packaged as a sub-directory in a - directory named "features". Within a Feature, files named "feature.xml" may - contain a list of the names and version numbers of the Plug-ins and/or - Fragments associated with that Feature. -- Features may also include other Features ("Included Features"). Within a - Feature, files named "feature.xml" may contain a list of the names and - version numbers of Included Features. - -The terms and conditions governing Plug-ins and Fragments should be contained in -files named "about.html" ("Abouts"). The terms and conditions governing Features -and Included Features should be contained in files named "license.html" -("Feature Licenses"). Abouts and Feature Licenses may be located in any -directory of a Download or Module including, but not limited to the following -locations: - -- The top-level (root) directory -- Plug-in and Fragment directories -- Inside Plug-ins and Fragments packaged as JARs -- Sub-directories of the directory named "src" of certain Plug-ins -- Feature directories - -Note: if a Feature made available by the Eclipse Foundation is installed using -the Provisioning Technology (as defined below), you must agree to a license -("Feature Update License") during the installation process. If the Feature -contains Included Features, the Feature Update License should either provide you -with the terms and conditions governing the Included Features or inform you -where you can locate them. Feature Update Licenses may be found in the "license" -property of files named "feature.properties" found within a Feature. Such -Abouts, Feature Licenses, and Feature Update Licenses contain the terms and -conditions (or references to such terms and conditions) that govern your use of -the associated Content in that directory. - -THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL -OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE -OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): - -- Eclipse Public License Version 1.0 (available at - http://www.eclipse.org/legal/epl-v10.html) -- Eclipse Distribution License Version 1.0 (available at - http://www.eclipse.org/licenses/edl-v1.0.html) -- Common Public License Version 1.0 (available at - http://www.eclipse.org/legal/cpl-v10.html) -- Apache Software License 1.1 (available at - http://www.apache.org/licenses/LICENSE) -- Apache Software License 2.0 (available at - http://www.apache.org/licenses/LICENSE-2.0) -- Mozilla Public License Version 1.1 (available at - http://www.mozilla.org/MPL/MPL-1.1.html) - -IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO -USE OF THE CONTENT. If no About, Feature License, or Feature Update License is -provided, please contact the Eclipse Foundation to determine what terms and -conditions govern that particular Content. - -Use of Provisioning Technology - -The Eclipse Foundation makes available provisioning software, examples of which -include, but are not limited to, p2 and the Eclipse Update Manager -("Provisioning Technology") for the purpose of allowing users to install -software, documentation, information and/or other materials (collectively -"Installable Software"). This capability is provided with the intent of allowing -such users to install, extend and update Eclipse-based products. Information -about packaging Installable Software is available at -http://eclipse.org/equinox/p2/repository_packaging.html ("Specification"). - -You may use Provisioning Technology to allow other parties to install -Installable Software. You shall be responsible for enabling the applicable -license agreements relating to the Installable Software to be presented to, and -accepted by, the users of the Provisioning Technology in accordance with the -Specification. By using Provisioning Technology in such a manner and making it -available in accordance with the Specification, you further acknowledge your -agreement to, and the acquisition of all necessary rights to permit the -following: - -1. A series of actions may occur ("Provisioning Process") in which a user may - execute the Provisioning Technology on a machine ("Target Machine") with the - intent of installing, extending or updating the functionality of an - Eclipse-based product. -2. During the Provisioning Process, the Provisioning Technology may cause third - party Installable Software or a portion thereof to be accessed and copied to - the Target Machine. -3. Pursuant to the Specification, you will provide to the user the terms and - conditions that govern the use of the Installable Software ("Installable - Software Agreement") and such Installable Software Agreement shall be - accessed from the Target Machine in accordance with the Specification. Such - Installable Software Agreement must inform the user of the terms and - conditions that govern the Installable Software and must solicit acceptance - by the end user in the manner prescribed in such Installable - Software Agreement. Upon such indication of agreement by the user, the - provisioning Technology will complete installation of the - Installable Software. - -Cryptography - -Content may contain encryption software. The country in which you are currently -may have restrictions on the import, possession, and use, and/or re-export to -another country, of encryption software. BEFORE using any encryption software, -please check the country's laws, regulations and policies concerning the import, -possession, or use, and re-export of encryption software, to see if this is -permitted. - -Java and all Java-based trademarks are trademarks of Oracle Corporation in the -United States, other countries, or both. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/birt-packages/birt-report-rcp/images/birt.ico b/build/birt-packages/birt-report-rcp/images/birt.ico deleted file mode 100644 index 05e4016c30b42d02d1e185957f75862f3ddc4064..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 292878 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 diff --git a/build/birt-packages/birt-report-rcp/pom.xml b/build/birt-packages/birt-report-rcp/pom.xml deleted file mode 100644 index cb6f74441cb..00000000000 --- a/build/birt-packages/birt-report-rcp/pom.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - 4.0.0 - - org.eclipse.birt.build.package - org.eclipse.birt.build.package-parent - 4.15.0-SNAPSHOT - ../ - - org.eclipse.birt - birt-report-rcp - eclipse-repository - - - build-server - - - - - org.eclipse.cbi.maven.plugins - eclipse-winsigner-plugin - ${cbi-version} - - - sign - - sign - - package - - - ${project.build.directory}/products/org.eclipse.birt.report.designer.rcp/win32/win32/x86_64/birt/birt.exe - ${project.build.directory}/products/org.eclipse.birt.report.designer.rcp/win32/win32/x86_64/birt/birtc.exe - - - - - - - - - - - - - - - org.eclipse.tycho - tycho-maven-plugin - ${tycho.version} - true - - - - - - - org.eclipse.tycho - tycho-p2-director-plugin - ${tycho.version} - - - create-product-distributions - - materialize-products - archive-products - - - - - - - org.eclipse.birt.report.designer.rcp - birt-rcp-report-designer-${birt.version}-${maven.build.timestamp} - birt - - - - - - org.eclipse.tycho - tycho-maven-plugin - true - - - - - diff --git a/build/birt-packages/pom.xml b/build/birt-packages/pom.xml index 5538d6560b6..f0d5373f9ac 100644 --- a/build/birt-packages/pom.xml +++ b/build/birt-packages/pom.xml @@ -33,7 +33,6 @@ birt-charts birt-epp - birt-report-rcp birt-report-all-in-one birt-report-framework birt-report-framework-sdk @@ -44,8 +43,6 @@ birt-wtp-integration-sdk birt-source birt-nl - birt-publish birt-runtime-test - diff --git a/promotion/pom.xml b/promotion/pom.xml index cec6285a828..1ff645eae84 100644 --- a/promotion/pom.xml +++ b/promotion/pom.xml @@ -98,11 +98,6 @@ SPDX-License-Identifier: EPL-2.0 ${project.basedir}/../build/birt-packages/birt-report-all-in-one/target/products/birt-report-designer-all-in-one-${birt.version}-${maven.build.timestamp}-win32.win32.x86_64.zip ${project.basedir}/../build/birt-packages/birt-report-framework-sdk/target/birt-report-framework-sdk-${birt.version}-${maven.build.timestamp}.zip ${project.basedir}/../build/birt-packages/birt-report-framework/target/birt-report-framework-${birt.version}-${maven.build.timestamp}.zip - ${project.basedir}/../build/birt-packages/birt-report-rcp/target/products/birt-rcp-report-designer-${birt.version}-${maven.build.timestamp}-linux.gtk.aarch64.tar.gz - ${project.basedir}/../build/birt-packages/birt-report-rcp/target/products/birt-rcp-report-designer-${birt.version}-${maven.build.timestamp}-linux.gtk.x86_64.tar.gz - ${project.basedir}/../build/birt-packages/birt-report-rcp/target/products/birt-rcp-report-designer-${birt.version}-${maven.build.timestamp}-macosx.cocoa.aarch64.tar.gz - ${project.basedir}/../build/birt-packages/birt-report-rcp/target/products/birt-rcp-report-designer-${birt.version}-${maven.build.timestamp}-macosx.cocoa.x86_64.tar.gz - ${project.basedir}/../build/birt-packages/birt-report-rcp/target/products/birt-rcp-report-designer-${birt.version}-${maven.build.timestamp}-win32.win32.x86_64.zip ${project.basedir}/../build/birt-packages/birt-runtime-osgi/target/birt-runtime-osgi-${birt.version}-${maven.build.timestamp}.zip ${project.basedir}/../build/birt-packages/birt-runtime/target/birt-runtime-${birt.version}-${maven.build.timestamp}.zip ${project.basedir}/../build/birt-packages/birt-sample-plugins/target/birt-sample-plugins-${birt.version}-${maven.build.timestamp}.zip