Skip to content

Commit e0172f7

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents d181e57 + 3df6cee commit e0172f7

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
# TBA-API-V3
22
A Java library for pulling robotics data from https://www.thebluealliance.com.
33

4-
I made this API because none of the other Java APIs were working for me. I hope that this will be the last place you have to go for your TBA API needs. Thanks!
4+
This API uses the new TBA V3 API, for the V2, you can use the deprecated https://github.com/wdavies973/TBA-API-V2.
55
# Installation
66
You'll need to create a TBA account and register a read API key
77
here: https://www.thebluealliance.com/account.
88
## With JitPack
99
Use [JitPack](https://jitpack.io) to install the library with Maven, Gradle, SBT, or Leiningen. Simply go to https://jitpack.io/#wdavies973/tba-api-v3, select your release, and add the provided lines to your buildfile.
1010

11+
Gradle example:
12+
```
13+
allprojects {
14+
repositories {
15+
...
16+
maven { url 'https://jitpack.io' }
17+
}
18+
}
19+
20+
dependencies {
21+
implementation 'com.github.wdavies973:tba-api-v3:1.0.5'
22+
}
23+
```
24+
1125
## Manually
1226
Download the .jar file from https://github.com/wdavies973/TBA-API-V3/releases.
1327

0 commit comments

Comments
 (0)