1+ /*
2+ * Copyright 2019 - 2020 Andre601
3+ *
4+ * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
5+ * documentation files (the "Software"), to deal in the Software without restriction, including without limitation
6+ * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
7+ * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8+ *
9+ * The above copyright notice and this permission notice shall be included in all copies or substantial
10+ * portions of the Software.
11+ *
12+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13+ * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
14+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
15+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
16+ * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17+ */
18+
19+ /**
20+ * This is the Javacord module which is used to provide support for the Javacord Library.
21+ * <br>Make sure to install both the request library and the core library for this one to work!
22+ *
23+ * <h1>Installation</h1>
24+ * Please replace {@code API_VERSION} with the latest release on Bintray.
25+ *
26+ * <h2>Gradle (recommended)</h2>
27+ *
28+ * <pre><code>
29+ * repositories{
30+ * maven{ url = 'https://dl.bintray.com/andre601/maven' }
31+ * }
32+ *
33+ * dependencies{
34+ * // Those two are required
35+ * compile 'org.botblock:JavaBotBlockAPI-core:API_VERSION'
36+ * compile 'org.botblock:JavaBotBlockAPI-request:API_VERSION'
37+ *
38+ * compile 'org.botblock:JavaBotBlockAPI-javacord:API_VERSION'
39+ * }
40+ * </code></pre>
41+ *
42+ * <h2>Maven</h2>
43+ *
44+ * <pre><code>{@literal
45+ * <repositories>
46+ * <repository>
47+ * <id>jcenter</id>
48+ * <name>jcenter-bintray</name>
49+ * <url>https://dl.bintray.com/andre601/maven</url>
50+ * </repository>
51+ * </repositories>
52+ *
53+ * <dependencies>
54+ * <!-- Those two are required -->
55+ * <dependency>
56+ * <groupId>org.botblock</groupId>
57+ * <artifactId>JavaBotBlockAPI-core</artifactId>
58+ * <version>API_VERSION</version>
59+ * </dependency>
60+ * <dependency>
61+ * <groupId>org.botblock</groupId>
62+ * <artifactId>JavaBotBlockAPI-request</artifactId>
63+ * <version>API_VERSION</version>
64+ * </dependency>
65+ *
66+ * <dependency>
67+ * <groupId>org.botblock</groupId>
68+ * <artifactId>JavaBotBlockAPI-javacord</artifactId>
69+ * <version>API_VERSION</version>
70+ * </dependency>
71+ * </dependencies>
72+ * }</code></pre>
73+ *
74+ * <h2>Manual</h2>
75+ * We do not recommend using jar files directly and instead use one of the above dependency management systems.
76+ *
77+ * <p>If you still want to do it manually, or can't use one of the other option, head over to the
78+ * <a target="_blank" href="https://github.com/botblock/JavaBotBlockAPI/releases/latest">GitHub releases page</a> or to
79+ * the <a target="_blank" href="https://bintray.com/beta/#/andre601/maven/JavaBotBlockAPI?tab=overview">Bintray release page</a>
80+ * and download the jar files from there.
81+ *
82+ * <p>Note that you will not receive any support when using this method.
83+ */
84+ package org .botblock .javabotblockapi .javacord ;
0 commit comments