Skip to content

Commit e551dd7

Browse files
authored
chewify readme
1 parent 347fcaf commit e551dd7

File tree

1 file changed

+20
-36
lines changed

1 file changed

+20
-36
lines changed

README.md

Lines changed: 20 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
1-
[version]: https://api.bintray.com/packages/jagrosh/maven/JDA-Utilities/images/download.svg
2-
[download]: https://bintray.com/jagrosh/maven/JDA-Utilities/_latestVersion
3-
[license]: https://img.shields.io/badge/License-Apache%202.0-lightgrey.svg
4-
[issues]: https://img.shields.io/github/issues/JDA-Applications/JDA-Utilities.svg
5-
[issues-link]: https://github.com/JDA-Applications/JDA-Utilities/issues
6-
7-
[ ![version][] ][download]
8-
[ ![license][] ](https://github.com/JDA-Applications/JDA-Utilities/tree/master/LICENSE)
9-
[ ![issues][] ][issues-link]
10-
11-
## JDA-Utilities
12-
JDA-Utilities is a series of tools and utilities for use with [JDA](https://github.com/DV8FromTheWorld/JDA)
13-
to assist in bot creation.
1+
## JDA-Chewtils
2+
JDA-Chewtils is a fork of [JDA-Utilities](https://github.com/JDA-Applications/JDA-Utilities) which is a series of tools and utilities for use with [JDA](https://github.com/DV8FromTheWorld/JDA) to assist in bot creation.
143

154
## Packages
165

176
Since JDA-Utilities 2.x, the library has been split into multiple modular projects,
18-
in order to better organize it's contents based on what developers might want to use and not use.
7+
in order to better organize its contents based on what developers might want to use and not use.
198

20-
+ [Command Package](https://github.com/JDA-Applications/JDA-Utilities/tree/master/command)
21-
+ [Commons Package](https://github.com/JDA-Applications/JDA-Utilities/tree/master/commons)
22-
+ [CommandDoc Package](https://github.com/JDA-Applications/JDA-Utilities/tree/master/doc)
23-
+ [Examples Package](https://github.com/JDA-Applications/JDA-Utilities/tree/master/examples)
24-
+ [Menu Package](https://github.com/JDA-Applications/JDA-Utilities/tree/master/menu)
9+
+ [Command Package](https://github.com/Chew/JDA-Chewtils/tree/master/command)
10+
+ [Commons Package](https://github.com/Chew/JDA-Chewtils/tree/master/commons)
11+
+ [CommandDoc Package](https://github.com/Chew/JDA-Chewtils/tree/master/doc)
12+
+ [Examples Package](https://github.com/Chew/JDA-Chewtils/tree/master/examples)
13+
+ [Menu Package](https://github.com/Chew/JDA-Chewtils/tree/master/menu)
2514

2615
Visit individual modules to read more about their contents!
2716

@@ -32,9 +21,9 @@ or via maven or gradle), as well as [JDA](https://github.com/DV8FromTheWorld/JDA
3221
With maven:
3322
```xml
3423
<dependency>
35-
<groupId>com.jagrosh</groupId>
36-
<artifactId>jda-utilities</artifactId>
37-
<version>JDA-UTILITIES-VERSION</version>
24+
<groupId>pw.chew</groupId>
25+
<artifactId>jda-chewtils</artifactId>
26+
<version>JDA-CHEWTILS-VERSION</version>
3827
<scope>compile</scope>
3928
<type>pom</type>
4029
</dependency>
@@ -46,21 +35,21 @@ With maven:
4635
```
4736
```xml
4837
<repository>
49-
<id>central</id>
50-
<name>bintray</name>
51-
<url>http://jcenter.bintray.com</url>
38+
<id>chew-m2</id>
39+
<url>https://m2.chew.pro/releases</url>
5240
</repository>
5341
```
5442

5543
With gradle:
5644
```groovy
5745
dependencies {
58-
compile 'com.jagrosh:jda-utilities:JDA-UTILITIES-VERSION'
46+
compile 'pw.chew:jda-chewtils:JDA-UTILITIES-VERSION'
5947
compile 'net.dv8tion:JDA:JDA-VERSION'
6048
}
6149
6250
repositories {
6351
jcenter()
52+
maven { url "https://m2.chew.pro/releases" }
6453
}
6554
```
6655

@@ -70,10 +59,10 @@ name as a suffix to the dependency:
7059
With maven:
7160
```xml
7261
<dependency>
73-
<groupId>com.jagrosh</groupId>
62+
<groupId>pw.chew</groupId>
7463
<!-- Notice that the dependency notation ends with "-command" -->
75-
<artifactId>jda-utilities-command</artifactId>
76-
<version>JDA-UTILITIES-VERSION</version>
64+
<artifactId>jda-chewtils-command</artifactId>
65+
<version>JDA-CHEWTILS-VERSION</version>
7766
<scope>compile</scope>
7867
</dependency>
7968
```
@@ -82,16 +71,11 @@ With gradle:
8271
```groovy
8372
dependencies {
8473
// Notice that the dependency notation ends with "-command"
85-
compile 'com.jagrosh:jda-utilities-command:JDA-UTILITIES-VERSION'
74+
compile 'pw.chew:jda-chewtils-command:JDA-CHEWTILS-VERSION'
8675
}
8776
```
8877

8978
## Examples
90-
Check out the [ExampleBot](https://github.com/jagrosh/ExampleBot) for a simple bot example.
9179

92-
Other guides and information can be found on the [wiki](https://github.com/JDA-Applications/JDA-Utilities/wiki).
80+
Guides and information can be found on the [wiki](https://github.com/Chew/JDA-Chewtils/wiki).
9381

94-
## Projects
95-
[**Vortex**](https://github.com/jagrosh/Vortex) - Vortex is an easy-to-use moderation bot that utilizes the JDA-Utilities library for the Command Client and some of the menus<br>
96-
[**JMusicBot**](https://github.com/jagrosh/MusicBot) - This music bot uses the Command Client for its base, and several menus, including the OrderedMenu for search results and the Paginator for the current queue<br>
97-
[**GiveawayBot**](https://github.com/jagrosh/GiveawayBot) - GiveawayBot is a basic bot for hosting quick giveaways!<br>

0 commit comments

Comments
 (0)