{"id":45893104,"url":"https://github.com/tahopen/tahopen-platform","last_synced_at":"2026-03-27T10:01:13.702Z","repository":{"id":258125719,"uuid":"869836296","full_name":"tahopen/tahopen-platform","owner":"tahopen","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-22T12:01:24.000Z","size":163334,"stargazers_count":28,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-22T13:19:30.518Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tahopen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-09T01:17:37.000Z","updated_at":"2025-03-22T12:01:38.000Z","dependencies_parsed_at":"2025-01-27T01:29:10.343Z","dependency_job_id":null,"html_url":"https://github.com/tahopen/tahopen-platform","commit_stats":null,"previous_names":["tahopen/tahopen-platform"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tahopen/tahopen-platform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tahopen%2Ftahopen-platform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tahopen%2Ftahopen-platform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tahopen%2Ftahopen-platform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tahopen%2Ftahopen-platform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tahopen","download_url":"https://codeload.github.com/tahopen/tahopen-platform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tahopen%2Ftahopen-platform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31042115,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-27T09:35:52.079Z","status":"ssl_error","status_checked_at":"2026-03-27T09:35:20.916Z","response_time":164,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-27T19:00:39.320Z","updated_at":"2026-03-27T10:01:13.690Z","avatar_url":"https://github.com/tahopen.png","language":"Java","funding_links":[],"categories":["数据科学"],"sub_categories":["计算机视觉"],"readme":"tahopen-platform\n================\n\nOverview\n--------\n\nThis set of modules make up Tahopen's core platform and business analytics server.\n\n## api\nThis module contains common interfaces used by the platform.  APIs for the plugin system, repository, security, and many others exist here.\n\n## core\nThis module contains core implementations of platform sub-systems and utility classes.\n\n## repository\nThis module contains the JCR Jackrabbit repository implementation of the tahopen platform\n\n## scheduler\nThis module contains the Quartz based scheduler implementation of the tahopen platform\n\n## extensions\nThis module contains a variety of capabilities used for various purposes within the platform\n\n## user-console\nThis module is a GWT front end for the tahopen platform, allowing users to navigate the repository, execute and schedule content, as well as administer the platform\n\n## assemblies\nThis module creates the Pentaho Server archive and contains the samples and other content needed for the Pentaho Server.\n\n\nHow to build\n--------------\n\nPentaho platform uses the maven framework. \n\n\n#### Pre-requisites for building the project:\n* Maven, version 3+\n* Java JDK 11\n* This [settings.xml](https://raw.githubusercontent.com/tahopen/maven-parent-poms/master/maven-support-files/settings.xml) in your \u003cuser-home\u003e/.m2 directory\n\n#### Building it\n\nThis is a maven project, and to build it use the following command\n\n```\nmvn clean install\n```\n\nOptionally you can specify -Dmaven.test.skip=true to skip the tests (even though\nyou shouldn't as you know)\n\nThe build result will be a Pentaho package located in *assemblies/pentaho-server/*. Then, this package can be dropped inside your system folder.\n\n#### Running the tests\n\n__Unit tests__\n\nThis will run all unit tests in the project (and sub-modules). To run integration tests as well, see Integration Tests below.\n\n```\n$ mvn test\n```\n\nIf you want to remote debug a single java unit test (default port is 5005):\n\n```\n$ cd core\n$ mvn test -Dtest=\u003c\u003cYourTest\u003e\u003e -Dmaven.surefire.debug\n```\n\n__Integration tests__\n\nIn addition to the unit tests, there are integration tests that test cross-module operation. This will run the integration tests.\n\n```\n$ mvn verify -DrunITs\n```\n\nTo run a single integration test:\n\n```\n$ mvn verify -DrunITs -Dit.test=\u003c\u003cYourIT\u003e\u003e\n```\n\nTo run a single integration test in debug mode (for remote debugging in an IDE) on the default port of 5005:\n\n```\n$ mvn verify -DrunITs -Dit.test=\u003c\u003cYourIT\u003e\u003e -Dmaven.failsafe.debug\n```\n\nTo skip test\n\n```\n$ mvn clean install -DskipTests\n```\n\nTo get log as text file\n\n```\n$ mvn clean install test \u003elog.txt\n```\n\n\n__IntelliJ__\n\n* Don't use IntelliJ's built-in maven. Make it use the same one you use from the commandline.\n  * Project Preferences -\u003e Build, Execution, Deployment -\u003e Build Tools -\u003e Maven ==\u003e Maven home directory\n\n````\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftahopen%2Ftahopen-platform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftahopen%2Ftahopen-platform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftahopen%2Ftahopen-platform/lists"}