Skip to content

Commit

Permalink
Merge pull request #79 from BlueTree242/development
Browse files Browse the repository at this point in the history
Merge dev and beta
  • Loading branch information
BlueTree242 authored Oct 26, 2021
2 parents b5e357f + 9ad27af commit f1051d1
Show file tree
Hide file tree
Showing 99 changed files with 3,186 additions and 198 deletions.
32 changes: 16 additions & 16 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
version: 2
updates:
- package-ecosystem: gradle
target-branch: "development"
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
ignore:
- dependency-name: org.mariadb.jdbc:mariadb-java-client
versions:
- 2.7.2
- dependency-name: org.hsqldb:hsqldb
versions:
- 2.5.1
- dependency-name: com.zaxxer:HikariCP
versions:
- 4.0.1
- package-ecosystem: gradle
target-branch: "development"
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 4
ignore:
- dependency-name: org.mariadb.jdbc:mariadb-java-client
versions:
- 2.7.2
- dependency-name: org.hsqldb:hsqldb
versions:
- 2.5.1
- dependency-name: com.zaxxer:HikariCP
versions:
- 4.0.1
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,15 @@
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
hs_err_pid*




# Custom files
build/
.idea/
gradle/
.gradle/
gradlew
gradlew.bat
39 changes: 34 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@

/*
* LICENSE
* DiscordSRVUtils
* -------------
* Copyright (C) 2020 - 2021 BlueTree242
* -------------
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-3.0.html>.
* END
*/

import org.apache.tools.ant.filters.ReplaceTokens

plugins {
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'java'
Expand Down Expand Up @@ -78,23 +102,28 @@ dependencies {
compileOnly 'com.github.DevLeoko:AdvancedBan:b4bbb6a'
compileOnly 'com.discordsrv:discordsrv:1.24.0'
compileOnly 'me.clip:placeholderapi:2.9.2'
compileOnly 'com.gitlab.ruany:LiteBansAPI:0.3.4'
implementation "org.flywaydb:flyway-core:7.5.3"
implementation "com.squareup.okhttp3:mockwebserver:4.9.2"
implementation group: 'org.json', name: 'json', version: '20210307'
implementation 'gui.ava:html2image:2.0.1'

implementation 'com.github.ben-manes.caffeine:caffeine:3.0.4'
}

group = 'me.bluetree.discordsrvutils'
version = '1.2.0-BETA-8'
version = '1.2.3-BETA-1'
description = 'DiscordSRVUtils'
compileJava.options.encoding 'UTF-8'
java.sourceCompatibility = JavaVersion.VERSION_1_8
java.sourceCompatibility = JavaVersion.VERSION_11

publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}

processResources {
from(sourceSets.main.resources.srcDirs) {
filter ReplaceTokens, tokens: [version: version]
}
}
22 changes: 22 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/*
* LICENSE
* DiscordSRVUtils
* -------------
* Copyright (C) 2020 - 2021 BlueTree242
* -------------
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-3.0.html>.
* END
*/

/*
* This file was generated by the Gradle 'init' task.
*/
Expand Down
Loading

0 comments on commit f1051d1

Please sign in to comment.