forked from fixrtm/fixRTM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
21 lines (20 loc) · 798 Bytes
/
settings.gradle.kts
File metadata and controls
21 lines (20 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/// Copyright (c) 2021 anatawa12 and other contributors
/// This file is part of fixRTM, released under GNU LGPL v3 with few exceptions
/// See LICENSE at https://github.com/fixrtm/fixRTM for more details
buildscript {
repositories {
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/") {
name = "ossrh-snapshot"
}
maven(url = "https://maven.minecraftforge.net/") {
name = "forge"
}
}
dependencies {
// use latest version by dependabot. dependabot supports dependencies in settings.gralde
classpath("net.minecraftforge.gradle:ForgeGradle:4.1.14")
classpath("org.ow2.asm:asm-util:6.0")
classpath("com.anatawa12.java-stab-gen:gradle-library:1.0.0")
}
}