add the JitPack repository in your build file > **gradle** > > ```{lang} > allprojects { > repositories { > ... > maven { url 'https://jitpack.io' } > } > } > ``` > > add the dependency > > ```{lang} > dependencies { > implementation 'com.github..:Bots:v6.5.0' > } > ``` > **maven** > > ```{lang} > > > jitpack.io > https://jitpack.io > > > ``` > add to pom.xml > > ```{lang} > > com.github.frunoob.TelegramBots > Bots > Release tag, commit hash or master-SNAPSHOT > > ``` Loading... add the JitPack repository in your build file > **gradle** > > ```{lang} > allprojects { > repositories { > ... > maven { url 'https://jitpack.io' } > } > } > ``` > > add the dependency > > ```{lang} > dependencies { > implementation 'com.github.<user name>.<respository name>:Bots:v6.5.0' > } > ``` > **maven** > > ```{lang} > <repositories> > <repository> > <id>jitpack.io</id> > <url>https://jitpack.io</url> > </repository> > </repositories> > ``` > add to pom.xml > > ```{lang} > <dependency> > <groupId>com.github.frunoob.TelegramBots</groupId> > <artifactId>Bots</artifactId> > <version>Release tag, commit hash or master-SNAPSHOT</version> > </dependency> > ``` 最后修改:2025 年 07 月 14 日 © 允许规范转载 赞 别打赏,我怕忍不住购买辣条与续命水
2 条评论
ffff