Plan api module

This commit is contained in:
Rsl1122 2019-02-28 17:50:52 +02:00
parent 0f32c030e6
commit b4a3feddf5
2 changed files with 12 additions and 0 deletions

11
Plan/api/build.gradle Normal file
View File

@ -0,0 +1,11 @@
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'com.djrapitops'
artifactId = 'Plan-api'
version = project.version
artifact jar
}
}
}

View File

@ -1,5 +1,6 @@
rootProject.name = 'Plan'
include 'api'
include 'common'
include 'bukkit'
include 'sponge'