forked from Bloodspawns/Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
unknown
committed
Sep 13, 2021
0 parents
commit b265b94
Showing
216 changed files
with
23,565 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
|
||
# Created by https://www.gitignore.io/api/java,gradle,intellij | ||
# Edit at https://www.gitignore.io/?templates=java,gradle,intellij | ||
|
||
### Intellij ### | ||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm | ||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | ||
.idea/ | ||
# User-specific stuff | ||
.idea/**/workspace.xml | ||
.idea/**/tasks.xml | ||
.idea/**/usage.statistics.xml | ||
.idea/**/dictionaries | ||
.idea/**/shelf | ||
|
||
# Generated files | ||
.idea/**/contentModel.xml | ||
|
||
# Sensitive or high-churn files | ||
.idea/**/dataSources/ | ||
.idea/**/dataSources.ids | ||
.idea/**/dataSources.local.xml | ||
.idea/**/sqlDataSources.xml | ||
.idea/**/dynamic.xml | ||
.idea/**/uiDesigner.xml | ||
.idea/**/dbnavigator.xml | ||
|
||
# Gradle | ||
.idea/**/gradle.xml | ||
.idea/**/libraries | ||
|
||
# Gradle and Maven with auto-import | ||
# When using Gradle or Maven with auto-import, you should exclude module files, | ||
# since they will be recreated, and may cause churn. Uncomment if using | ||
# auto-import. | ||
# .idea/modules.xml | ||
# .idea/*.iml | ||
# .idea/modules | ||
# *.iml | ||
# *.ipr | ||
|
||
# CMake | ||
cmake-build-*/ | ||
|
||
# Mongo Explorer plugin | ||
.idea/**/mongoSettings.xml | ||
|
||
# File-based project format | ||
*.iws | ||
|
||
# IntelliJ | ||
out/ | ||
|
||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
||
# JIRA plugin | ||
atlassian-ide-plugin.xml | ||
|
||
# Cursive Clojure plugin | ||
.idea/replstate.xml | ||
|
||
# Crashlytics plugin (for Android Studio and IntelliJ) | ||
com_crashlytics_export_strings.xml | ||
crashlytics.properties | ||
crashlytics-build.properties | ||
fabric.properties | ||
|
||
# Editor-based Rest Client | ||
.idea/httpRequests | ||
|
||
# Android studio 3.1+ serialized cache file | ||
.idea/caches/build_file_checksums.ser | ||
|
||
### Intellij Patch ### | ||
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | ||
|
||
# *.iml | ||
# modules.xml | ||
# .idea/misc.xml | ||
# *.ipr | ||
|
||
# Sonarlint plugin | ||
.idea/**/sonarlint/ | ||
|
||
# SonarQube Plugin | ||
.idea/**/sonarIssues.xml | ||
|
||
# Markdown Navigator plugin | ||
.idea/**/markdown-navigator.xml | ||
.idea/**/markdown-navigator/ | ||
|
||
### Java ### | ||
# Compiled class file | ||
*.class | ||
|
||
# Log file | ||
*.log | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
### Gradle ### | ||
.gradle | ||
build/ | ||
|
||
# Ignore Gradle GUI config | ||
gradle-app.setting | ||
|
||
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) | ||
!gradle-wrapper.jar | ||
|
||
# Cache of project | ||
.gradletasknamecache | ||
|
||
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 | ||
# gradle/wrapper/gradle-wrapper.properties | ||
|
||
### Gradle Patch ### | ||
**/build/ | ||
|
||
# End of https://www.gitignore.io/api/java,gradle,intellij |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
allprojects { | ||
group = "com.injector" | ||
version = "1.0.0" | ||
} | ||
|
||
buildscript { | ||
repositories{ | ||
gradlePluginPortal() | ||
mavenLocal() | ||
} | ||
} | ||
|
||
subprojects{ | ||
|
||
repositories { | ||
jcenter() | ||
maven(url = "https://mvnrepository.com/artifact") | ||
maven(url = "https://repo.runelite.net") | ||
maven(url = "https://jitpack.io") | ||
|
||
mavenLocal() | ||
} | ||
|
||
apply<JavaLibraryPlugin>() | ||
|
||
tasks { | ||
|
||
withType<JavaCompile> { | ||
options.encoding = "UTF-8" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
repositories { | ||
jcenter() | ||
} | ||
|
||
kotlinDslPluginOptions { | ||
experimentalWarning.set(false) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
|
||
object Libraries { | ||
private object Versions { | ||
const val annotations = "18.0.0" | ||
const val antlr = "4.7.2" | ||
const val apacheCommonsCompress = "1.19" | ||
const val apacheCommonsCsv = "1.7" | ||
const val apacheCommonsText = "1.8" | ||
const val asm = "7.2" | ||
const val commonsCli = "1.4" | ||
const val discord = "1.1" | ||
const val fernflower = "07082019" | ||
const val findbugs = "3.0.2" | ||
const val gson = "2.8.6" | ||
const val guava = "28.1-jre" | ||
const val guice = "4.2.2" | ||
const val h2 = "1.4.200" | ||
const val hamcrest = "2.2" | ||
const val javax = "1.3.2" | ||
const val javaxInject = "1" | ||
const val jedis = "3.1.0" | ||
const val jna = "5.5.0" | ||
const val jogamp = "2.3.2" | ||
const val jopt = "5.0.4" | ||
const val jooq = "3.12.3" | ||
const val junit = "4.12" | ||
const val jupiter = "5.6.0-M1" | ||
const val logback = "1.2.3" | ||
const val lombok = "1.18.10" | ||
const val mapstruct = "1.3.1.Final" | ||
const val mariadbJdbc = "2.5.1" | ||
const val mavenPluginAnnotations = "3.6.0" | ||
const val mavenPluginApi = "3.6.2" | ||
const val minio = "6.0.11" | ||
const val mockito = "3.1.0" | ||
const val mongodbDriverSync = "3.11.2" | ||
const val mysqlConnectorJava = "8.0.18" | ||
const val naturalMouse = "2.0.2" | ||
const val netty = "4.1.43.Final" | ||
const val okhttp3 = "4.2.2" | ||
const val orangeExtensions = "1.0" | ||
const val petitparser = "2.2.0" | ||
const val plexus = "3.3.0" | ||
const val rxjava = "2.2.14" | ||
const val rxrelay = "2.1.1" | ||
const val scribejava = "6.9.0" | ||
const val sisu = "0.3.4" | ||
const val sentry = "1.7.28" | ||
const val slf4j = "1.7.29" | ||
const val springJdbc = "5.2.1.RELEASE" | ||
const val springboot = "2.2.1.RELEASE" | ||
const val sql2o = "1.6.0" | ||
const val substance = "8.0.02" | ||
const val trident = "1.5.00" | ||
const val runelite = "latest.release" | ||
const val jcodec = "latest.release" | ||
const val microsoft_alm = "0.6.4" | ||
} | ||
|
||
const val microsoft_alm_common = "com.microsoft.alm:auth-common:${Versions.microsoft_alm}" | ||
const val microsoft_alm_storage = "com.microsoft.alm:auth-secure-storage:${Versions.microsoft_alm}" | ||
const val jcodec = "org.jcodec:jcodec:${Versions.jcodec}" | ||
const val jcodec_javase = "org.jcodec:jcodec-javase:${Versions.jcodec}" | ||
const val runelite_client = "net.runelite:client:${Versions.runelite}" | ||
const val runelite_jshell = "net.runelite:jshell:${Versions.runelite}" | ||
const val runelite_api = "net.runelite:runelite-api:${Versions.runelite}" | ||
const val runelite_http_api = "net.runelite:http-api:${Versions.runelite}" | ||
const val annotations = "org.jetbrains:annotations:${Versions.annotations}" | ||
const val antlr = "org.antlr:antlr4-runtime:${Versions.antlr}" | ||
const val apacheCommonsCompress = "org.apache.commons:commons-compress:${Versions.apacheCommonsCompress}" | ||
const val apacheCommonsCsv = "org.apache.commons:commons-csv:${Versions.apacheCommonsCsv}" | ||
const val apacheCommonsText = "org.apache.commons:commons-text:${Versions.apacheCommonsText}" | ||
const val asmAll = "org.ow2.asm:asm:${Versions.asm}" | ||
const val asmUtil = "org.ow2.asm:asm-util:${Versions.asm}" | ||
const val commonsCli = "commons-cli:commons-cli:${Versions.commonsCli}" | ||
const val discord = "net.runelite:discord:${Versions.discord}" | ||
const val fernflower = "net.runelite:fernflower:${Versions.fernflower}" | ||
const val findbugs = "com.google.code.findbugs:jsr305:${Versions.findbugs}" | ||
const val gson = "com.google.code.gson:gson:${Versions.gson}" | ||
const val guava = "com.google.guava:guava:${Versions.guava}" | ||
const val guice = "com.google.inject:guice:${Versions.guice}:no_aop" | ||
const val guiceGrapher = "com.google.inject.extensions:guice-grapher:${Versions.guice}" | ||
const val guiceTestlib = "com.google.inject.extensions:guice-testlib:${Versions.guice}" | ||
const val h2 = "com.h2database:h2:${Versions.h2}" | ||
const val hamcrest = "org.hamcrest:hamcrest-library:${Versions.hamcrest}" | ||
const val javax = "javax.annotation:javax.annotation-api:${Versions.javax}" | ||
const val javaxInject = "javax.inject:javax.inject:${Versions.javaxInject}" | ||
const val jedis = "redis.clients:jedis:${Versions.jedis}" | ||
const val jna = "net.java.dev.jna:jna:${Versions.jna}" | ||
const val jnaPlatform = "net.java.dev.jna:jna-platform:${Versions.jna}" | ||
const val jogampJogl = "org.jogamp.jogl:jogl-all:${Versions.jogamp}" | ||
const val jogampGluegen = "org.jogamp.gluegen:gluegen-rt:${Versions.jogamp}" | ||
const val jogampGluegenLinuxAmd64 = "org.jogamp.gluegen:gluegen-rt:${Versions.jogamp}:natives-linux-amd64" | ||
const val jogampGluegenLinuxI586 = "org.jogamp.gluegen:gluegen-rt:${Versions.jogamp}:natives-linux-i586" | ||
const val jogampGluegenWindowsAmd64 = "org.jogamp.gluegen:gluegen-rt:${Versions.jogamp}:natives-windows-amd64" | ||
const val jogampGluegenWindowsI586 = "org.jogamp.gluegen:gluegen-rt:${Versions.jogamp}:natives-windows-i586" | ||
const val jogampJoglLinuxAmd64 = "org.jogamp.jogl:jogl-all:${Versions.jogamp}:natives-linux-amd64" | ||
const val jogampJoglLinuxI586 = "org.jogamp.jogl:jogl-all:${Versions.jogamp}:natives-linux-i586" | ||
const val jogampJoglWindowsAmd64 = "org.jogamp.jogl:jogl-all:${Versions.jogamp}:natives-windows-amd64" | ||
const val jogampJoglWindowsI586 = "org.jogamp.jogl:jogl-all:${Versions.jogamp}:natives-windows-i586" | ||
const val jopt = "net.sf.jopt-simple:jopt-simple:${Versions.jopt}" | ||
const val jooq = "org.jooq:jooq:${Versions.jooq}" | ||
const val jooqCodegen = "org.jooq:jooq-codegen:${Versions.jooq}" | ||
const val jooqMeta = "org.jooq:jooq-meta:${Versions.jooq}" | ||
const val junit = "junit:junit:${Versions.junit}" | ||
const val jupiter = "org.junit.jupiter:junit-jupiter-api:${Versions.jupiter}" | ||
const val logback = "ch.qos.logback:logback-classic:${Versions.logback}" | ||
const val lombok = "org.projectlombok:lombok:${Versions.lombok}" | ||
const val mapstruct = "org.mapstruct:mapstruct-jdk8:${Versions.mapstruct}" | ||
const val mapstructProcessor = "org.mapstruct:mapstruct-processor:${Versions.mapstruct}" | ||
const val mariadbJdbc = "org.mariadb.jdbc:mariadb-java-client:${Versions.mariadbJdbc}" | ||
const val mavenPluginAnnotations = "org.apache.maven.plugin-tools:maven-plugin-annotations:${Versions.mavenPluginAnnotations}" | ||
const val mavenPluginApi = "org.apache.maven:maven-plugin-api:${Versions.mavenPluginApi}" | ||
const val minio = "io.minio:minio:${Versions.minio}" | ||
const val mockitoCore = "org.mockito:mockito-core:${Versions.mockito}" | ||
const val mockitoInline = "org.mockito:mockito-inline:${Versions.mockito}" | ||
const val mongodbDriverSync = "org.mongodb:mongodb-driver-sync:${Versions.mongodbDriverSync}" | ||
const val mysqlConnectorJava = "mysql:mysql-connector-java:${Versions.mysqlConnectorJava}" | ||
const val naturalMouse = "com.github.joonasvali.naturalmouse:naturalmouse:${Versions.naturalMouse}" | ||
const val nettyAll = "io.netty:netty-all:${Versions.netty}" | ||
const val nettyBuffer = "io.netty:netty-buffer:${Versions.netty}" | ||
const val okhttp3 = "com.squareup.okhttp3:okhttp:${Versions.okhttp3}" | ||
const val okhttp3Webserver = "com.squareup.okhttp3:mockwebserver:${Versions.okhttp3}" | ||
const val orangeExtensions = "net.runelite:orange-extensions:${Versions.orangeExtensions}" | ||
const val petitparser = "com.github.petitparser:java-petitparser:${Versions.petitparser}" | ||
const val plexus = "org.codehaus.plexus:plexus-utils:${Versions.plexus}" | ||
const val rxjava = "io.reactivex.rxjava2:rxjava:${Versions.rxjava}" | ||
const val rxrelay = "com.jakewharton.rxrelay2:rxrelay:${Versions.rxrelay}" | ||
const val scribejava = "com.github.scribejava:scribejava-apis:${Versions.scribejava}" | ||
const val sisu = "org.eclipse.sisu:org.eclipse.sisu.inject:${Versions.sisu}" | ||
const val slf4jApi = "org.slf4j:slf4j-api:${Versions.slf4j}" | ||
const val slf4jNop = "org.slf4j:slf4j-nop:${Versions.slf4j}" | ||
const val slf4jSimple = "org.slf4j:slf4j-simple:${Versions.slf4j}" | ||
const val sentry = "io.sentry:sentry:${Versions.sentry}" | ||
const val springbootDevtools = "org.springframework.boot:spring-boot-devtools:${Versions.springboot}" | ||
const val springbootStarter = "org.springframework.boot:spring-boot-starter:${Versions.springboot}" | ||
const val springbootStarterWeb = "org.springframework.boot:spring-boot-starter-web:${Versions.springboot}" | ||
const val springbootStarterJdbc = "org.springframework.boot:spring-boot-starter-jdbc:${Versions.springboot}" | ||
const val springbootStarterTest = "org.springframework.boot:spring-boot-starter-test:${Versions.springboot}" | ||
const val springbootStarterTomcat = "org.springframework.boot:spring-boot-starter-tomcat:${Versions.springboot}" | ||
const val springbootJdbc = "org.springframework:spring-jdbc:${Versions.springJdbc}" | ||
const val sql2o = "org.sql2o:sql2o:${Versions.sql2o}" | ||
const val substance = "net.runelite.pushingpixels:substance:${Versions.substance}" | ||
const val trident = "net.runelite.pushingpixels:trident:${Versions.trident}" | ||
} |
Oops, something went wrong.