Fix for needing to include repositories in sub-projects. (I think)

This commit is contained in:
Eoghanmc22 2020-06-29 20:42:02 -04:00
parent 3e740cf874
commit ba5bdf2526
1 changed files with 8 additions and 7 deletions

View File

@ -3,18 +3,19 @@ plugins {
id 'net.ltgt.apt' version '0.10'
}
allprojects {
repositories {
mavenCentral()
maven { url 'https://libraries.minecraft.net' }
maven { url 'https://jitpack.io' }
}
}
group 'net.minestom.server'
version '1.0'
sourceCompatibility = 1.11
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://libraries.minecraft.net' }
}
sourceSets {
main {
java {