{"id":36456545,"url":"https://github.com/gomvn/gomvn","last_synced_at":"2026-01-11T23:04:17.900Z","repository":{"id":57556775,"uuid":"269808861","full_name":"gomvn/gomvn","owner":"gomvn","description":"Self-hosted private maven repository.","archived":false,"fork":false,"pushed_at":"2020-06-09T14:11:44.000Z","size":44,"stargazers_count":23,"open_issues_count":0,"forks_count":8,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-20T05:12:04.525Z","etag":null,"topics":["java","maven","maven-repository","self-hosted"],"latest_commit_sha":null,"homepage":"","language":"Go","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/gomvn.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}},"created_at":"2020-06-05T23:32:49.000Z","updated_at":"2024-02-16T14:47:35.000Z","dependencies_parsed_at":"2022-09-14T12:23:46.188Z","dependency_job_id":null,"html_url":"https://github.com/gomvn/gomvn","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gomvn/gomvn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gomvn%2Fgomvn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gomvn%2Fgomvn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gomvn%2Fgomvn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gomvn%2Fgomvn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gomvn","download_url":"https://codeload.github.com/gomvn/gomvn/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gomvn%2Fgomvn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28326183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T22:11:01.104Z","status":"ssl_error","status_checked_at":"2026-01-11T22:10:58.990Z","response_time":60,"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":["java","maven","maven-repository","self-hosted"],"created_at":"2026-01-11T23:04:17.847Z","updated_at":"2026-01-11T23:04:17.896Z","avatar_url":"https://github.com/gomvn.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"GoMVN\n=====\n\nA lightweight self-hosted repository manager for your private Maven artifacts.\n\n\nInstallation\n------------\n\nUse docker to install this tool. Image is available at [Docker HUB](https://hub.docker.com/r/gomvn/gomvn).\n\nFor better accesibility, map these docker volumes:\n\n| Path              | Description |\n| ----------------- | ----------- |\n| `/app/data`       | app data for persistency |\n| `/app/config.yml` | configuration from outside of container, copy [default config](https://raw.githubusercontent.com/gomvn/gomvn/master/config.yml) |\n\n\nUser Guide\n----------\n\nOn first run, admin account and his token is generated and prited into console.\n\nYou will need this to access [management api](https://gomvn.docs.apiary.io/), which is used to set user access.\n\nIf you don't have more users, you can use already created admin accout to deploy and access your maven artifacts.\n\n\n### How to create java library \n\nEnsure that your `build.gradle` file contains configuration by this example:\n\n```gradle\nplugins {\n    id 'maven-publish'\n    id 'java'\n}\n\npublishing {\n    repositories {\n        maven {\n            def releasesRepoUrl = \"http://my-private-repository.example.com/release\"\n            def snapshotsRepoUrl = \"http://my-private-repository.example.com/snapshot\"\n            name = 'mlj'\n            url = project.version.endsWith('RELEASE') ? releasesRepoUrl : snapshotsRepoUrl\n            credentials {\n                username 'PUT HERE USERNAME'\n                password 'PUT HERE TOKEN'\n            }\n        }\n    }\n    publications {\n        maven(MavenPublication) {\n            groupId = 'com.example'\n            artifactId = 'library'\n            version = '1.0.0.RELEASE'\n\n            from components.java\n        }\n    }\n}\n```\n\n### How to use your private maven repository\n\nAppend to your `build.gradle`:\n\n```gradle\nrepositories {\n    mavenCentral()\n    maven {\n        url \"http://my-private-repository.example.com/release\"\n        credentials {\n            username project.mljMavenUsername\n            password project.mljMavenPassword\n        }\n    }\n}\n\ndependencies {\n    implementation \"com.example:library:1.0.0.RELEASE\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgomvn%2Fgomvn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgomvn%2Fgomvn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgomvn%2Fgomvn/lists"}