Skip to content

Commit 2028342

Browse files
committed
Remove RequestHandler.java
Comment GitHub Packages out for the moment.
1 parent 207399f commit 2028342

File tree

5 files changed

+104
-1271
lines changed

5 files changed

+104
-1271
lines changed

.gitignore

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
2+
# Created by https://www.gitignore.io/api/intellij
3+
# Edit at https://www.gitignore.io/?templates=intellij
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
.idea/modules.xml
37+
.idea/*.iml
38+
.idea/modules
39+
*.iml
40+
*.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### Intellij Patch ###
76+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
77+
78+
# *.iml
79+
# modules.xml
80+
# .idea/misc.xml
81+
# *.ipr
82+
83+
# Sonarlint plugin
84+
.idea/**/sonarlint/
85+
86+
# SonarQube Plugin
87+
.idea/**/sonarIssues.xml
88+
89+
# Markdown Navigator plugin
90+
.idea/**/markdown-navigator.xml
91+
.idea/**/markdown-navigator/
92+
93+
# End of https://www.gitignore.io/api/intellij

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ postAction.postGuilds(jda, api);
114114
```
115115

116116
## GET methods
117-
Since version 2.0.0 of JavaBotBlockAPI can you get certain information of a bot or the available Bot lists on the BotBlock API.
117+
Since version 2.0.0 of JavaBotBlockAPI can you get certain information of a bot or the available Bot lists on the BotBlock API.
118+
All methods listed below can be used through the `GetAction` class.
118119

119120
### All available Bot lists
120121
You can call `.getBotLists()` to receive a JSONObject with all available Botlists in the BotBlockAPI.
@@ -213,7 +214,7 @@ With `.getBotListInfo(Long|String, Site|String)` can you receive the info of a s
213214
The returned data depends on the selected site and can be different for each one.
214215

215216
### Invite
216-
The method `getInvite(Long|String)` allows you to get the OAuth invite of the bot.
217+
The method `.getInvite(Long|String)` allows you to get the OAuth invite of the bot.
217218
The invite is based on the most common appearance on the different bot lists.
218219

219220
### Server count
@@ -225,7 +226,7 @@ You can call `.getOwners(Long|String)` to get the owners of a Bot from all the B
225226
The info is returned as ArrayList and is based on how often the info is provided by the botlists.
226227

227228
## Exceptions
228-
When you post the guild counts you could encounter certain Exceptions.
229+
When you post the guild counts could you encounter certain Exceptions.
229230
You can receive the following exceptions:
230231
- `IOException`
231232
The Request couldn't be performed properly. This can be f.e. the case when BotBlock.org denies access (403).

build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ plugins{
66
id 'maven'
77
}
88

9-
group = 'com.andre601'
9+
project.group = "com.andre601"
10+
project.version = "3.0.4"
1011

11-
version = '3.0.3'
12-
13-
sourceCompatibility = targetCompatibility = 1.8
12+
sourceCompatibility = JavaVersion.VERSION_1_8
13+
targetCompitability = JavaVersion.VERSION_1_8
1414

1515
jar{
1616
baseName = 'JavaBotBlockAPI'
@@ -73,6 +73,7 @@ publishing{
7373
artifact sourcesJar
7474
}
7575
}
76+
/*
7677
repositories{
7778
maven{
7879
name = "GitHubPackages"
@@ -88,4 +89,5 @@ publishing{
8889
}
8990
}
9091
}
92+
*/
9193
}

0 commit comments

Comments
 (0)