We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
NeoBotApiはJitpackからMavenリポジトリとして開発者向けに提供されています。 MavenやGradleを用いて依存関係にNeoBotApiを追加することができます。
Gradle
repositories { maven { url 'https://jitpack.io' } } dependencies { compileOnly 'com.github.NeoBotDevelopment:NeoBotApi:VERSION' }
Maven
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.github.NeoBotDevelopment</groupId> <artifactId>NeoBotApi</artifactId> <version>VERSION</version> </dependency> </dependencies>