project: Add wiki scraper (#1348)
* wiki-scraper: Add wiki scroper to the main project * client: Updated wiki stats * wiki-scraper: Checkstyle * wiki-scraper: Pull in @Ganom his changes * client: Updated wiki stats
This commit is contained in:
committed by
Kyleeld
parent
4fba65d4f1
commit
8239be4b75
28
wiki-scraper/build.gradle
Normal file
28
wiki-scraper/build.gradle
Normal file
@@ -0,0 +1,28 @@
|
||||
apply plugin:'application'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url 'https://jitpack.io' }
|
||||
}
|
||||
|
||||
description = 'RuneLite Wiki scraper'
|
||||
|
||||
mainClassName = "net.runelite.data.App"
|
||||
|
||||
dependencies {
|
||||
api project(':cache')
|
||||
api project(':runelite-api')
|
||||
|
||||
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombok
|
||||
|
||||
compileOnly group: 'org.projectlombok', name: 'lombok', version: lombok
|
||||
|
||||
implementation group: 'com.google.code.gson', name: 'gson', version: gson
|
||||
implementation group: 'com.google.guava', name: 'guava', version: guava
|
||||
implementation group: 'com.github.petitparser', name: 'java-petitparser', version: '2.2.0'
|
||||
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: okhttp3
|
||||
implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4j
|
||||
implementation group: 'org.slf4j', name: 'slf4j-simple', version: slf4j
|
||||
|
||||
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: jupiter
|
||||
}
|
||||
Reference in New Issue
Block a user