2021-11-23 23:43:55 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
maven { url "https://papermc.io/repo/repository/maven-public/" }
|
2021-12-31 04:02:41 +01:00
|
|
|
maven { url "https://maven.fabricmc.net/" }
|
2021-11-23 23:43:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-12 06:11:20 +02:00
|
|
|
rootProject.name = 'dynmap-common'
|
2021-11-23 23:43:55 +01:00
|
|
|
|
2018-08-24 06:14:55 +02:00
|
|
|
include ':spigot'
|
2018-10-23 01:52:41 +02:00
|
|
|
include ':bukkit-helper-113-2'
|
2019-05-14 06:40:18 +02:00
|
|
|
include ':bukkit-helper-114-1'
|
2019-12-12 21:15:11 +01:00
|
|
|
include ':bukkit-helper-115'
|
2020-06-26 02:29:03 +02:00
|
|
|
include ':bukkit-helper-116'
|
2020-08-13 04:40:06 +02:00
|
|
|
include ':bukkit-helper-116-2'
|
2020-09-11 05:18:51 +02:00
|
|
|
include ':bukkit-helper-116-3'
|
2020-11-03 21:49:40 +01:00
|
|
|
include ':bukkit-helper-116-4'
|
2021-06-12 04:59:04 +02:00
|
|
|
include ':bukkit-helper-117'
|
2021-12-01 06:08:54 +01:00
|
|
|
include ':bukkit-helper-118'
|
2022-03-01 00:46:40 +01:00
|
|
|
include ':bukkit-helper-118-2'
|
2022-06-07 19:28:16 +02:00
|
|
|
include ':bukkit-helper-119'
|
2018-08-12 06:27:52 +02:00
|
|
|
include ':bukkit-helper'
|
2018-08-12 06:42:08 +02:00
|
|
|
include ':dynmap-api'
|
2018-08-12 07:53:55 +02:00
|
|
|
include ':DynmapCore'
|
|
|
|
include ':DynmapCoreAPI'
|
2022-07-29 23:59:13 +02:00
|
|
|
include ':fabric-1.19.1'
|
2022-05-19 17:23:10 +02:00
|
|
|
include ':fabric-1.19'
|
2022-02-28 21:14:50 +01:00
|
|
|
include ':fabric-1.18.2'
|
2021-11-25 19:01:44 +01:00
|
|
|
include ':fabric-1.18'
|
2021-07-08 03:18:35 +02:00
|
|
|
include ':fabric-1.17.1'
|
2020-11-10 18:47:23 +01:00
|
|
|
include ':fabric-1.16.4'
|
2020-10-13 02:22:20 +02:00
|
|
|
include ':fabric-1.15.2'
|
2021-04-30 21:48:56 +02:00
|
|
|
include ':fabric-1.14.4'
|
2022-08-06 20:10:06 +02:00
|
|
|
include ':forge-1.19.2'
|
2022-06-08 05:04:44 +02:00
|
|
|
include ':forge-1.19'
|
2022-03-03 00:50:42 +01:00
|
|
|
include ':forge-1.18.2'
|
2021-12-02 07:02:08 +01:00
|
|
|
include ':forge-1.18'
|
2021-07-26 01:49:36 +02:00
|
|
|
include ':forge-1.17.1'
|
2021-06-27 15:07:10 +02:00
|
|
|
include ':forge-1.16.5'
|
|
|
|
include ':forge-1.15.2'
|
|
|
|
include ':forge-1.14.4'
|
2018-08-12 06:11:20 +02:00
|
|
|
|
2018-08-24 06:14:55 +02:00
|
|
|
project(':spigot').projectDir = "$rootDir/spigot" as File
|
2018-10-23 01:52:41 +02:00
|
|
|
project(':bukkit-helper-113-2').projectDir = "$rootDir/bukkit-helper-113-2" as File
|
2019-05-14 06:40:18 +02:00
|
|
|
project(':bukkit-helper-114-1').projectDir = "$rootDir/bukkit-helper-114-1" as File
|
2019-12-12 21:15:11 +01:00
|
|
|
project(':bukkit-helper-115').projectDir = "$rootDir/bukkit-helper-115" as File
|
2020-06-26 02:29:03 +02:00
|
|
|
project(':bukkit-helper-116').projectDir = "$rootDir/bukkit-helper-116" as File
|
2020-08-13 04:40:06 +02:00
|
|
|
project(':bukkit-helper-116-2').projectDir = "$rootDir/bukkit-helper-116-2" as File
|
2020-09-11 05:18:51 +02:00
|
|
|
project(':bukkit-helper-116-3').projectDir = "$rootDir/bukkit-helper-116-3" as File
|
2020-11-03 21:49:40 +01:00
|
|
|
project(':bukkit-helper-116-4').projectDir = "$rootDir/bukkit-helper-116-4" as File
|
2021-06-12 04:59:04 +02:00
|
|
|
project(':bukkit-helper-117').projectDir = "$rootDir/bukkit-helper-117" as File
|
2021-12-01 06:08:54 +01:00
|
|
|
project(':bukkit-helper-118').projectDir = "$rootDir/bukkit-helper-118" as File
|
2022-03-01 00:46:40 +01:00
|
|
|
project(':bukkit-helper-118-2').projectDir = "$rootDir/bukkit-helper-118-2" as File
|
2022-06-07 19:28:16 +02:00
|
|
|
project(':bukkit-helper-119').projectDir = "$rootDir/bukkit-helper-119" 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:53:55 +02:00
|
|
|
project(':DynmapCore').projectDir = "$rootDir/DynmapCore" as File
|
|
|
|
project(':DynmapCoreAPI').projectDir = "$rootDir/DynmapCoreAPI" as File
|
2022-07-29 23:59:13 +02:00
|
|
|
project(':fabric-1.19.1').projectDir = "$rootDir/fabric-1.19.1" as File
|
2022-02-28 21:14:50 +01:00
|
|
|
project(':fabric-1.18.2').projectDir = "$rootDir/fabric-1.18.2" as File
|
2021-07-08 03:18:35 +02:00
|
|
|
project(':fabric-1.17.1').projectDir = "$rootDir/fabric-1.17.1" as File
|
2020-11-10 18:47:23 +01:00
|
|
|
project(':fabric-1.16.4').projectDir = "$rootDir/fabric-1.16.4" as File
|
2020-10-13 02:22:20 +02:00
|
|
|
project(':fabric-1.15.2').projectDir = "$rootDir/fabric-1.15.2" as File
|
2021-04-30 21:48:56 +02:00
|
|
|
project(':fabric-1.14.4').projectDir = "$rootDir/fabric-1.14.4" as File
|
2022-08-06 20:10:06 +02:00
|
|
|
project(':forge-1.19.2').projectDir = "$rootDir/forge-1.19.2" as File
|
2022-03-03 00:50:42 +01:00
|
|
|
project(':forge-1.18.2').projectDir = "$rootDir/forge-1.18.2" as File
|
2021-07-26 01:49:36 +02:00
|
|
|
project(':forge-1.17.1').projectDir = "$rootDir/forge-1.17.1" as File
|
2021-06-27 15:07:10 +02:00
|
|
|
project(':forge-1.16.5').projectDir = "$rootDir/forge-1.16.5" as File
|
|
|
|
project(':forge-1.15.2').projectDir = "$rootDir/forge-1.15.2" as File
|
|
|
|
project(':forge-1.14.4').projectDir = "$rootDir/forge-1.14.4" as File
|
2021-06-21 18:28:22 +02:00
|
|
|
|