chore: update dependencies, plugins and gradle wrapper versions
This commit is contained in:
parent
37a286c3a6
commit
e698adc3d2
4 changed files with 23 additions and 7 deletions
6
.vscode/tasks.json
vendored
6
.vscode/tasks.json
vendored
|
@ -21,6 +21,12 @@
|
|||
"command": "./gradlew generatePots",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "checkForDependencyUpdates",
|
||||
"type": "shell",
|
||||
"command": "./gradlew dependencyUpdates",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "clean",
|
||||
"type": "shell",
|
||||
|
|
10
README.md
10
README.md
|
@ -55,6 +55,16 @@ This project is setup to use [VSCode](https://code.visualstudio.com/) for develo
|
|||
to use any other IDE that you're accustomed to (if any), but by using VSCode, you get the benefit
|
||||
of predefined tasks and launch commands.
|
||||
|
||||
## Checking for dependency updates
|
||||
|
||||
To check for dependency updates with gradle, simply run:
|
||||
|
||||
```sh
|
||||
./gradlew dependencyUpdates
|
||||
```
|
||||
|
||||
This will print a report to the console about any dependencies which have updates.
|
||||
|
||||
## Plugging In Your Data
|
||||
|
||||
To get started with the code and plug in your own data, you need to edit the
|
||||
|
|
11
build.gradle
11
build.gradle
|
@ -13,10 +13,11 @@ plugins {
|
|||
id 'java'
|
||||
id 'application'
|
||||
|
||||
id 'com.github.johnrengelman.shadow' version '5.0.0'
|
||||
id 'com.github.johnrengelman.shadow' version '5.1.0'
|
||||
id 'edu.sc.seis.macAppBundle' version '2.3.0'
|
||||
id 'edu.sc.seis.launch4j' version '2.4.6'
|
||||
id 'net.minecrell.licenser' version '0.4.1'
|
||||
id "com.github.ben-manes.versions" version "0.21.0"
|
||||
}
|
||||
|
||||
apply plugin: "org.mini2Dx.gettext"
|
||||
|
@ -46,15 +47,15 @@ dependencies {
|
|||
implementation 'com.github.Vatuu:discord-rpc:1.6.2'
|
||||
implementation 'net.sf.jopt-simple:jopt-simple:5.0.4'
|
||||
implementation 'org.zeroturnaround:zt-zip:1.13'
|
||||
implementation 'com.squareup.okhttp3:okhttp:4.0.0'
|
||||
implementation 'com.squareup.okhttp3:okhttp:4.0.1'
|
||||
implementation 'net.mikehardy:google-analytics-java:2.0.8'
|
||||
implementation 'io.sentry:sentry:1.7.16'
|
||||
implementation 'io.sentry:sentry:1.7.24'
|
||||
implementation 'org.mini2Dx:gettext-lib:1.1.0'
|
||||
implementation 'org.apache.logging.log4j:log4j-api:2.12.0'
|
||||
implementation 'org.apache.logging.log4j:log4j-core:2.12.0'
|
||||
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.2'
|
||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.2'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.0'
|
||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.0'
|
||||
}
|
||||
|
||||
application {
|
||||
|
|
3
gradle/wrapper/gradle-wrapper.properties
vendored
3
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,5 @@
|
|||
#Wed Jun 12 21:23:41 AEST 2019
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
|
||||
|
|
Loading…
Reference in a new issue