{"id":15043990,"url":"https://github.com/danthe1st/danbot1","last_synced_at":"2025-10-04T05:31:48.157Z","repository":{"id":57732904,"uuid":"140156234","full_name":"danthe1st/DanBot1","owner":"danthe1st","description":"A small, pluginable Discord Bot","archived":true,"fork":false,"pushed_at":"2020-03-03T11:44:02.000Z","size":284782,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-12T15:32:30.716Z","etag":null,"topics":["discord","discord-api","discord-bot","discord-java","java","java-8","jda","jda-bot","jda-discord","jda-discord-bot","maven"],"latest_commit_sha":null,"homepage":"https://danthe1st.github.io/DanBot1/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danthe1st.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null}},"created_at":"2018-07-08T09:58:24.000Z","updated_at":"2023-01-28T13:51:46.000Z","dependencies_parsed_at":"2022-09-13T08:41:29.503Z","dependency_job_id":null,"html_url":"https://github.com/danthe1st/DanBot1","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/danthe1st/DanBot1","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danthe1st%2FDanBot1","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danthe1st%2FDanBot1/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danthe1st%2FDanBot1/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danthe1st%2FDanBot1/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danthe1st","download_url":"https://codeload.github.com/danthe1st/DanBot1/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danthe1st%2FDanBot1/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278267509,"owners_count":25958881,"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-04T02:00:05.491Z","response_time":63,"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":["discord","discord-api","discord-bot","discord-java","java","java-8","jda","jda-bot","jda-discord","jda-discord-bot","maven"],"created_at":"2024-09-24T20:49:55.790Z","updated_at":"2025-10-04T05:31:47.011Z","avatar_url":"https://github.com/danthe1st.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DanBot1 [![Build Status](https://travis-ci.com/danthe1st/DanBot1.svg?branch=master)](https://travis-ci.com/danthe1st/DanBot1)\r\na little, pluginable Discord Chat Bot.\u003cbr\u003e\r\nFor a list of Commands and standard-permissions visit [https://danthe1st.github.io/DanBot1](https://danthe1st.github.io/DanBot1)\r\n\r\nProgram your own Plugins:\r\n\r\nAn example for creating Plugins for DanBot1 can be found [here](https://github.com/danthe1st/DanBot1ExamplePlugin)\r\n* Create a new Maven Project\r\n* Make sure that you are using at least Java 8\r\n* add DanBot1 to the Dependencies (replace VERSION with [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.danthe1st/DanBot1/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.danthe1st/DanBot1)):\r\n```xml\r\n\u003cdependencies\u003e\r\n\t\u003cdependency\u003e\r\n\t\t\u003cgroupId\u003eio.github.danthe1st\u003c/groupId\u003e\r\n\t\t\u003cartifactId\u003eDanBot1\u003c/artifactId\u003e\r\n\t\t\u003cversion\u003eVERSION\u003c/version\u003e\r\n\t\t\u003cscope\u003eprovided\u003c/scope\u003e\r\n\t\u003c/dependency\u003e\r\n\u003c/dependencies\u003e\r\n```\r\n* if you use *IntelliJ*, make sure to tick `Include dependencies with \"Provided\" scope` in your run configuration. ![include provided dependencies](./.github/resc/IntelliJtickIncludeProvidedDependencies.png \"TODO\")\r\n* Commands for the Bot have to be annotated with `@io.github.danthe1st.danbot1.commands.BotCommand`\r\n* Commands should have a no-args-Constructor\r\n* the field *aliases* in `@BotCommand` mean the Command aliases (should be at least one)\r\n* Commands should implement the Interface `io.github.danthe1st.danbot1.commands.Command`\r\n* Listeners should be annotated with `@io.github.danthe1st.danbot1.listeners.BotListener`\r\n* Listeners should have a no-args-Constructor\r\n* Listeners should extend `net.dv8tion.jda.api.hooks.ListenerAdapter`\r\n* You can run the Bot by executing io.github.danthe1st.danbot1.core.Main.main(String[] args);\r\n* you can export the plugin as a normal JAR File or use a maven export(mvn package), but the Commands and Listeners should be accessible and should hava a no-args-Constructor.\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanthe1st%2Fdanbot1","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanthe1st%2Fdanbot1","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanthe1st%2Fdanbot1/lists"}