-
Notifications
You must be signed in to change notification settings - Fork 0
Add to dependencies
皐月なふ (Nafu Satsuki) edited this page Jun 20, 2022
·
1 revision
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>