Fix gradle config

This commit is contained in:
Alexander Söderberg 2020-05-14 14:32:20 +02:00
parent 501fd9c8e6
commit b7f708dcd6
No known key found for this signature in database
GPG Key ID: C0207FF7EA146678
4 changed files with 9 additions and 4 deletions

View File

@ -16,9 +16,9 @@ repositories {
dependencies {
implementation(project(":Core"))
implementation(project(":PlotSquared"))
compile("org.bstats:bstats-bukkit:1.7")
compile(project(":Core"))
compile(project(":PlotSquared"))
compile("com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT")
//implementation 'com.onarandombox.multiversecore:Multiverse-Core:3.0.0-SNAPSHOT'
implementation("org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT")

View File

@ -20,8 +20,8 @@
</dependency>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>Core</artifactId>
<version>unspecified</version>
<artifactId>PlotSquared</artifactId>
<version>5.11.1</version>
<scope>compile</scope>
</dependency>
<dependency>

View File

@ -129,6 +129,8 @@ subprojects {
archiveFileName = "${parent.name}-${project.name}-${parent.version}.jar"
destinationDirectory = file "../target"
}
version = rootProject.version
}
task aggregatedJavadocs(type: Javadoc, description: "Generate javadocs from all child projects as if it was a single project", group: "Documentation") {

View File

@ -1,3 +1,6 @@
rootProject.name = 'PlotSquared'
include 'Core', 'Bukkit' // , 'Nukkit', 'Sponge'
project(':Core').name = 'PlotSquared'
project(':Bukkit').name = 'PlotSquared-Bukkit'