{"id":20349597,"url":"https://github.com/btraceio/btrace-maven","last_synced_at":"2025-10-11T11:32:17.936Z","repository":{"id":69148814,"uuid":"50352888","full_name":"btraceio/btrace-maven","owner":"btraceio","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-09T17:45:55.000Z","size":64,"stargazers_count":25,"open_issues_count":3,"forks_count":12,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-07-19T03:43:50.038Z","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/btraceio.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,"zenodo":null}},"created_at":"2016-01-25T13:40:25.000Z","updated_at":"2025-03-17T12:08:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"2af85058-4c59-488d-a1ff-489c59c9f433","html_url":"https://github.com/btraceio/btrace-maven","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/btraceio/btrace-maven","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btraceio%2Fbtrace-maven","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btraceio%2Fbtrace-maven/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btraceio%2Fbtrace-maven/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btraceio%2Fbtrace-maven/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/btraceio","download_url":"https://codeload.github.com/btraceio/btrace-maven/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btraceio%2Fbtrace-maven/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279007031,"owners_count":26084227,"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","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"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":"2024-11-14T22:26:41.994Z","updated_at":"2025-10-11T11:32:17.911Z","avatar_url":"https://github.com/btraceio.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BTrace Maven Support\n\nProvides Maven integration for [BTrace](https://github.com/btraceio/btrace)\n\n__Version: 2.2.6__\n\n## Components\n\n### BTrace Maven Plugin (btrace-maven-plugin)\n\nAllows compilation of BTrace scripts as a part of the Maven project lifecycle.\n\n```\n\u003cplugins\u003e\n    \u003cplugin\u003e\n\t\u003cgroupId\u003eio.btrace\u003c/groupId\u003e\n\t\u003cartifactId\u003ebtrace-maven-plugin\u003c/artifactId\u003e\n\t\u003cversion\u003e2.2.6\u003c/version\u003e\n\t\u003cexecutions\u003e\n\t    \u003cexecution\u003e\n\t\t\u003cgoals\u003e\n\t\t    \u003cgoal\u003ebtracec\u003c/goal\u003e\n\t\t\u003c/goals\u003e\n\t    \u003c/execution\u003e\n\t\u003c/executions\u003e\n\t\u003cconfiguration\u003e\n\t    \u003cclasspathElements\u003e\n\t        \u003cclasspathElement\u003e/path/to/jar_or_folder\u003c/classpathElement\u003e\n\t        ...\n\t    \u003c/classpathElements\u003e\n\t\u003c/configuration\u003e\n    \u003c/plugin\u003e\n    ...\n\u003c/plugins\u003e\n```\n\nThe plugin configuration accepts the following parameters:\n* __sourceDirectory__ - where the sources to compile are located (_default: ${project.build.sourceDirectory}_)\n* __classPathElements__ - additional class path for compilation\n* __outputDirectory__ - where to put the compiled binaries (_default: ${project.build.outputDirectory}_)\n\n\n### BTrace Project Archetype (btrace-project-archetype)\n\nA simple archetype to generate a functional scaffolding for a project containing BTrace scripts.\n\nTo bootstrap a new project use\n\n```\nmvn archetype:generate\n  -DgroupId=[your project's group id]\n  -DartifactId=[your project's artifact id]\n  -DarchetypeGroupId=io.btrace \n  -DarchetypeArtifactId=btrace-project-archetype\n  -DarchetypeVersion=2.2.6\n```\n\n## Usage\n\nThe artifacts are hosted by [Maven Central](https://mvnrepository.com/artifact/io.btrace/btrace-maven-plugin)\n\nModify your maven __settings.xml__ to include the following section:\n```\n...\n\u003cprofiles\u003e\n\t\u003cprofile\u003e\n\t\t\u003crepositories\u003e\n\t\t\t\u003crepository\u003e\n\t\t\t\t\u003csnapshots\u003e\n\t\t\t\t\t\u003cenabled\u003efalse\u003c/enabled\u003e\n\t\t\t\t\u003c/snapshots\u003e\n\t\t\t\t\u003cid\u003ecentral\u003c/id\u003e\n\t\t\t\t\u003cname\u003eossrh-central\u003c/name\u003e\n\t\t\t\t\u003curl\u003ehttps://oss.sonatype.org\u003c/url\u003e\n\t\t\t\u003c/repository\u003e\n    \t\t\u003c/repositories\u003e\n\t\t\u003cpluginRepositories\u003e\n\t\t\t\u003cpluginRepository\u003e\n\t\t\t\t\u003csnapshots\u003e\n\t\t\t\t\t\u003cenabled\u003efalse\u003c/enabled\u003e\n\t\t\t\t\u003c/snapshots\u003e\n\t\t\t\t\u003cid\u003ecentral\u003c/id\u003e\n\t\t\t\t\u003cname\u003eossrh-central\u003c/name\u003e\n\t\t\t\t\u003curl\u003ehttps://oss.sonatype.org\u003c/url\u003e\n\t\t\t\u003c/pluginRepository\u003e\n\t\t\u003c/pluginRepositories\u003e\n\t\t\u003cid\u003eossrh\u003c/id\u003e\n\t\u003c/profile\u003e\n\u003c/profiles\u003e\n\u003cactiveProfiles\u003e\n\t\u003cactiveProfile\u003eossrh\u003c/activeProfile\u003e\n\u003c/activeProfiles\u003e\n\u003c/settings\u003e\n...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbtraceio%2Fbtrace-maven","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbtraceio%2Fbtrace-maven","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbtraceio%2Fbtrace-maven/lists"}