dynmap/settings.gradle

13 lines
497 B
Groovy
Raw Normal View History

2018-08-12 06:11:20 +02:00
rootProject.name = 'dynmap-common'
include ':dynmap'
2018-08-12 06:27:52 +02:00
include ':bukkit-helper-113'
include ':bukkit-helper'
2018-08-12 06:42:08 +02:00
include ':dynmap-api'
2018-08-12 07:27:15 +02:00
include ':dynmap-core'
2018-08-12 06:11:20 +02:00
project(':dynmap').projectDir = "$rootDir/bukkit" as File
2018-08-12 06:27:52 +02:00
project(':bukkit-helper-113').projectDir = "$rootDir/bukkit-helper-113" as File
2018-08-12 06:42:08 +02:00
project(':bukkit-helper').projectDir = "$rootDir/bukkit-helper" as File
project(':dynmap-api').projectDir = "$rootDir/dynmap-api" as File
2018-08-12 07:27:15 +02:00
project(':dynmap-core').projectDir = "$rootDir/dynmap-core" as File