-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (42 loc) · 1.08 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
buildscript {
ext.kotlinVersion = '1.3.72'
repositories {
mavenCentral()
maven {
name = 'gradle-plugins'
url = 'https://plugins.gradle.org/m2'
}
// maven {
// name = 'sponge'
// url = 'https://repo.spongepowered.org/maven'
// }
// maven {
// name = 'forge'
// url = 'http://files.minecraftforge.net/maven'
// }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
//classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4'
}
}
apply plugin: 'java'
project(':SpongeForge:SpongeCommon') {
apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
runtime project(':FoxCore-Sponge')
runtime project(':FoxGuard-Sponge')
}
}
project(':FoxCore-Common') {
apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
runtimeOnly project(':FoxGuard-Common')
}
}
wrapper {
gradleVersion = '4.10.3'
distributionType = Wrapper.DistributionType.ALL
}