| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,16 +10,19 @@ repositories { | |||
| 10 | 10 | mavenCentral() | |
| 11 | 11 | } | |
| 12 | 12 | ||
| 13 | + def runeLiteVersion = '1.5.44-SNAPSHOT' | ||
| 14 | + | ||
| 13 | 15 | dependencies { | |
| 14 | - compileOnly 'net.runelite:client:1.5.43-SNAPSHOT' | ||
| 15 | - compileOnly 'org.slf4j:slf4j-api:1.7.25' | ||
| 16 | + compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion | ||
| 16 | 17 | ||
| 17 | 18 | compileOnly 'org.projectlombok:lombok:1.18.4' | |
| 18 | 19 | annotationProcessor 'org.projectlombok:lombok:1.18.4' | |
| 19 | 20 | ||
| 20 | 21 | testImplementation 'junit:junit:4.12' | |
| 21 | 22 | testImplementation 'org.slf4j:slf4j-simple:1.7.12' | |
| 22 | - testImplementation 'net.runelite:client:1.5.43-SNAPSHOT' | ||
| 23 | + testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion, { | ||
| 24 | + exclude group: 'ch.qos.logback', module: 'logback-classic' | ||
| 25 | + } | ||
| 23 | 26 | } | |
| 24 | 27 | ||
| 25 | 28 | group = 'com.example' | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,15 +2,15 @@ | |||
| 2 | 2 | ||
| 3 | 3 | import com.google.inject.Provides; | |
| 4 | 4 | import javax.inject.Inject; | |
| 5 | + import lombok.extern.slf4j.Slf4j; | ||
| 6 | + import net.runelite.api.ChatMessageType; | ||
| 5 | 7 | import net.runelite.api.Client; | |
| 6 | 8 | import net.runelite.api.GameState; | |
| 7 | - import net.runelite.api.ChatMessageType; | ||
| 8 | 9 | import net.runelite.api.events.GameStateChanged; | |
| 9 | 10 | import net.runelite.client.config.ConfigManager; | |
| 10 | 11 | import net.runelite.client.eventbus.Subscribe; | |
| 11 | 12 | import net.runelite.client.plugins.Plugin; | |
| 12 | 13 | import net.runelite.client.plugins.PluginDescriptor; | |
| 13 | - import lombok.extern.slf4j.Slf4j; | ||
| 14 | 14 | ||
| 15 | 15 | @Slf4j | |
| 16 | 16 | @PluginDescriptor( | |
| Back | FazBrowse Home | New Git URL |
0 commit comments