* 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
29 lines
1000 B
Groovy
29 lines
1000 B
Groovy
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
|
|
}
|