Skip to content

Commit

Permalink
chore: migrate getMesh()
Browse files Browse the repository at this point in the history
  • Loading branch information
pollend committed Nov 27, 2021
1 parent 0275d61 commit b7d3324
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
// Alternatively we untangle and update the common.gradle / Kotlin Gradle plugin stuff or just remove these two
buildscript {
repositories {
// External libs - jcenter is Bintray and is supposed to be a superset of Maven Central, but do both just in case
jcenter()
mavenCentral()
google()
maven {
url = uri("https://plugins.gradle.org/m2/")
}
Expand All @@ -16,6 +15,14 @@ buildscript {
url = "http://artifactory.terasology.org/artifactory/virtual-repo-live"
allowInsecureProtocol = true // 😱
}

// TODO MYSTERY: As of November 7th 2011 virtual-repo-live could no longer be relied on for latest snapshots - Pro feature?
// We've been using it that way for *years* and nothing likewise changed in the area for years as well. This seems to work ....
maven {
name = "Terasology snapshot locals"
url = "http://artifactory.terasology.org/artifactory/terasology-snapshot-local"
allowInsecureProtocol = true // 😱
}
}

dependencies {
Expand Down

0 comments on commit b7d3324

Please sign in to comment.