Skip to content

Commit 1be0c5a

Browse files
committed
Fixed build dependencies
1 parent cd309f7 commit 1be0c5a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

common/build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@
1515
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1616
*/
1717

18+
val modId: String by project
1819
val modVersion: String by project
1920
val minecraftVersion: String by project
20-
val modId: String by project
2121
val fabricLoaderVersion: String by project
22+
val pngEncoderVersion: String by project
2223
val discordIPCVersion: String by project
24+
val classGraphVersion: String by project
25+
val kotlinVersion: String by project
2326
val ktorVersion: String by project
2427
val mockitoKotlin: String by project
2528
val mockitoInline: String by project
@@ -44,9 +47,10 @@ dependencies {
4447
modImplementation("net.fabricmc:fabric-loader:$fabricLoaderVersion") { isTransitive = false }
4548

4649
// Add dependencies on the required Kotlin modules.
47-
implementation("org.reflections:reflections:0.10.2")
50+
implementation("io.github.classgraph:classgraph:${classGraphVersion}")
4851
implementation("com.github.Edouard127:KDiscordIPC:$discordIPCVersion")
49-
implementation("com.pngencoder:pngencoder:0.15.0")
52+
implementation("com.pngencoder:pngencoder:$pngEncoderVersion")
53+
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
5054

5155
// Ktor
5256
implementation("io.ktor:ktor-client-core:$ktorVersion")

0 commit comments

Comments
 (0)