{"id":17760737,"url":"https://github.com/moosetechnology/moosenexus","last_synced_at":"2025-07-20T22:06:08.736Z","repository":{"id":259420797,"uuid":"874815559","full_name":"moosetechnology/MooseNexus","owner":"moosetechnology","description":"Build automation and dependency management for Moose models","archived":false,"fork":false,"pushed_at":"2025-02-21T14:14:34.000Z","size":186,"stargazers_count":1,"open_issues_count":8,"forks_count":0,"subscribers_count":13,"default_branch":"main","last_synced_at":"2025-07-20T22:04:56.857Z","etag":null,"topics":["build-tool","dependency-manager","moose","pharo"],"latest_commit_sha":null,"homepage":"","language":"Smalltalk","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moosetechnology.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-10-18T14:08:29.000Z","updated_at":"2025-02-21T14:14:38.000Z","dependencies_parsed_at":"2024-10-26T14:55:56.651Z","dependency_job_id":"c69fb055-3eb9-4dd2-9c53-cfb71813df2a","html_url":"https://github.com/moosetechnology/MooseNexus","commit_stats":null,"previous_names":["moosetechnology/moosenexus"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/moosetechnology/MooseNexus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moosetechnology%2FMooseNexus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moosetechnology%2FMooseNexus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moosetechnology%2FMooseNexus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moosetechnology%2FMooseNexus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moosetechnology","download_url":"https://codeload.github.com/moosetechnology/MooseNexus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moosetechnology%2FMooseNexus/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266205317,"owners_count":23892443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["build-tool","dependency-manager","moose","pharo"],"created_at":"2024-10-26T19:11:24.816Z","updated_at":"2025-07-20T22:06:08.718Z","avatar_url":"https://github.com/moosetechnology.png","language":"Smalltalk","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Moose version](https://img.shields.io/badge/Moose-11-%23aac9ff.svg)](https://github.com/moosetechnology/Moose)\n[![Moose version](https://img.shields.io/badge/Moose-12-%23aac9ff.svg)](https://github.com/moosetechnology/Moose)\n![Build Info](https://github.com/moosetechnology/MooseNexus/workflows/Tests/badge.svg)\n[![Coverage Status](https://coveralls.io/repos/github/moosetechnology/MooseNexus/badge.svg?branch=main)](https://coveralls.io/github/moosetechnology/MooseNexus?branch=main)\n\n# MooseNexus\n\nBuild automation and dependency management for Moose models.  \nNexus provides dependency analysis and management similar to Maven and Gradle when building models.\nIt also provides structured and versioned tracking of models.\n\n## Installation\n\n```st\nMetacello new\n  githubUser: 'moosetechnology' project: 'MooseNexus' commitish: 'main' path: 'src';\n  baseline: 'MooseNexus';\n  load\n```\n\nTo import and analyze managed projects, you will need to install the appropriate build tools, such as [Maven](https://maven.apache.org/install.html) and [Gradle](https://gradle.org/install/).\n\nTo create new models, you will need to install the appropriate model extractor, such as [VerveineJ](https://github.com/moosetechnology/VerveineJ/) (in this case, either locally or using [VerveineJ-Docker](https://github.com/Evref-BL/VerveineJ-Docker)).\n\n\n## Support\n\nCurrently only works for Java projects.\nSupported project natures, based on their build automation tool, are Maven and Gradle.\nDependency management support for unmanaged (\"vanilla\") projects is planned.\n\n\n## Usage\n\nImport a new project into a Nexus repository:\n```st\nproject := NexusRepository default import: 'projectName' fromDirectory: 'path/to/sources'.\n```\nThis will attempt to find the project properties automatically: group, version and language.\nIf more control over these properties is required, they must be set before the project is added to the repository:\n```st\nsourcePath := 'path/to/sources'.\nproject := NexusProjectImporter importFromDirectory: sourcePath.\nproject name: 'name'.\nproject group: 'group'.\nproject version: 'version'.\nproject language: 'language'. \"in lower case\"\nNexusRepository default recordProject: project fromDirectory: sourcePath.\n```\n\nRetrieve an existing project from a Nexus repository:\n```st\nproject := NexusRepository default group: 'group' project: 'name' version: 'version'.\n```\n\nCreate a model of the managed project:\n```st\nproject buildModel.\n```\n\nImport a model into the image:\n```st\nproject importModel.\n```\n\n## Terminology\n\n- **Repository**: A central directory where Moose models are stored and managed by Nexus.\n- **Project**: One or more software systems that are part of the same model, managed as a unit by Nexus.\n- **Managed**: Refers to a software system or project that is managed by a build automation tool. This term applies to systems under analysis that are managed by Maven or other tools, as well as projects that are managed by Nexus.\n- **Artifact**: A file or output produced as part of a build process. In the context of Nexus, an artifact is a model. In the context of systems under analysis, they are dependencies, such as jar files in Java.\n- **Nature**: Specifies the build automation tool, such as Maven or Gradle, used to manage the configuration and lifecycle of the project under analysis.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoosetechnology%2Fmoosenexus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoosetechnology%2Fmoosenexus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoosetechnology%2Fmoosenexus/lists"}