{"id":51150236,"url":"https://github.com/javaxt-project/javaxt-core-test","last_synced_at":"2026-06-26T05:30:44.195Z","repository":{"id":364315781,"uuid":"1019844605","full_name":"javaxt-project/javaxt-core-test","owner":"javaxt-project","description":"Used to test the javaxt-core library","archived":false,"fork":false,"pushed_at":"2026-06-12T13:54:11.000Z","size":85,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-12T15:24:29.492Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/javaxt-project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-07-15T01:08:04.000Z","updated_at":"2026-06-12T13:54:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/javaxt-project/javaxt-core-test","commit_stats":null,"previous_names":["javaxt-project/javaxt-core-test"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/javaxt-project/javaxt-core-test","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/javaxt-project%2Fjavaxt-core-test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/javaxt-project%2Fjavaxt-core-test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/javaxt-project%2Fjavaxt-core-test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/javaxt-project%2Fjavaxt-core-test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/javaxt-project","download_url":"https://codeload.github.com/javaxt-project/javaxt-core-test/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/javaxt-project%2Fjavaxt-core-test/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34805072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-26T02:00:06.560Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-06-26T05:30:43.682Z","updated_at":"2026-06-26T05:30:44.177Z","avatar_url":"https://github.com/javaxt-project.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JavaXT Core Test Project\n\nThis project is used to test the [javaxt-core](https://github.com/javaxt-project/javaxt-core) library,\nproviding test coverage for various components and utilities.\n\nThe project consists of two main modules that work together to test the javaxt-core library:\n\n1. javaxt-core-build: Builds the javaxt-core library using sources from a local directory or GitHub\n2. javaxt-core-test: Runs test scripts\n\n## Building the Project\n\n### Build All Modules (Default Branch)\n```bash\nmvn clean install\n```\n\n### Build with Specific Branch\n```bash\n# Build using a specific branch (e.g., 'dev')\nmvn clean install -Djavaxt.core.branch=dev\n\n# Build using a feature branch\nmvn clean install -Djavaxt.core.branch=feat/54\n\n# Build using a specific commit/tag\nmvn clean install -Djavaxt.core.branch=v1.11.3\n```\n\n### Build with Local javaxt-core Directory\n```bash\n# Build using local javaxt-core source directory\nmvn clean install -Djavaxt.core.local.dir=/path/to/javaxt-core/src\n\n# Example with Windows path (point to src directory)\nmvn clean install -Djavaxt.core.local.dir=C:\\path\\to\\javaxt-core\\src\n\n```\n\n**Note**: The local directory should point to the source directory containing the\njavaxt-core Java files (typically the `src` directory), not necessarily a Maven project.\nThe files will be copied and compiled directly in the test project.\n\n## Running Tests\n\n### Run All Tests (Default Branch)\n```bash\nmvn test\n```\n\n### Run Tests with Specific Branch\n```bash\n# Run tests against a specific branch\nmvn test -Djavaxt.core.branch=dev\n\n# Run tests against a feature branch\nmvn test -Djavaxt.core.branch=feat/54\n```\n\n### Run Tests with Local javaxt-core Directory\n```bash\n# Run tests against local javaxt-core source\nmvn test -Djavaxt.core.local.dir=/path/to/javaxt-core/src\n\n# Example with Windows path (point to src directory)\nmvn test -Djavaxt.core.local.dir=C:\\path\\to\\javaxt-core\\src\n```\n\n## Command Line Interface\n\nA jar file is created during the \"package\" phase and can be used to interactively\ntest javaxt-core features.\n\n```bash\n# Build jar file (See above for more options)\nmvn clean package\n\n# Execute tests via command line\njava -jar dist/javaxt-core-test.jar -test ...\n```\n\n\n## Contributing\n\nWhen adding new tests:\n1. Place test classes in the appropriate package under `javaxt-core-test/src/test/java/`\n2. Follow the existing naming conventions\n3. Include comprehensive test coverage for edge cases\n4. Add any additional resources to `javaxt-core-test/src/main/resources/`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjavaxt-project%2Fjavaxt-core-test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjavaxt-project%2Fjavaxt-core-test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjavaxt-project%2Fjavaxt-core-test/lists"}