Skip to content

Commit cb5f923

Browse files
authored
Merge pull request #2 from TopiSenpai/dev-mysql
yay
2 parents 4ce84cb + ab24448 commit cb5f923

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+5164
-5714
lines changed

.gitignore

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
build/
2-
.gradle/
3-
.idea/
4-
logs/
5-
.history
6-
options.cfg
7-
8-
# local env files
9-
.env.local
10-
.env.*.local
11-
12-
# Log files
13-
npm-debug.log*
14-
yarn-debug.log*
15-
yarn-error.log*
16-
17-
# Editor directories and files
18-
.idea
19-
.vscode
20-
*.suo
21-
*.ntvs*
22-
*.njsproj
23-
*.sln
24-
*.sw?
1+
build/
2+
.gradle/
3+
.idea/
4+
logs/
5+
.history
6+
options.cfg
7+
8+
# local env files
9+
.env.local
10+
.env.*.local
11+
12+
# Log files
13+
npm-debug.log*
14+
yarn-debug.log*
15+
yarn-error.log*
16+
17+
# Editor directories and files
18+
.idea
19+
.vscode
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<img src="src/main/resources/public/images/kittybot_banner_noborders.png" />
2-
3-
[![total downloads](https://img.shields.io/github/downloads/TopiSenpai/kittybot/total.svg)](https://github.com/TopiSenpai/kittybot/releases)
4-
5-
#### A Discord Bot to manage your roles
6-
---
7-
8-
//TODO: README.md
1+
<img src="src/main/resources/public/images/kittybot_banner_noborders.png" />
2+
3+
[![total downloads](https://img.shields.io/github/downloads/TopiSenpai/kittybot/total.svg)](https://github.com/TopiSenpai/kittybot/releases)
4+
5+
#### A Discord Bot to manage your roles
6+
---
7+
8+
//TODO: README.md

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group 'de.anteiku'
8-
version '2.5'
8+
version '2.6'
99

1010
mainClassName = 'de.anteiku.kittybot.KittyBot'
1111
compileJava.options.encoding = 'UTF-8'
@@ -31,5 +31,7 @@ dependencies {
3131
compile 'com.sparkjava:spark-core:2.9.1'
3232

3333
compile 'org.apache.velocity:velocity-engine-core:2.1'
34+
35+
compile 'mysql:mysql-connector-java:8.0.19'
3436
}
3537

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Mar 11 14:26:41 CET 2020
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
3-
distributionBase=GRADLE_USER_HOME
4-
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
6-
zipStoreBase=GRADLE_USER_HOME
1+
#Wed Mar 11 14:26:41 CET 2020
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
3+
distributionBase=GRADLE_USER_HOME
4+
distributionPath=wrapper/dists
5+
zipStorePath=wrapper/dists
6+
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)