mirror of
https://github.com/SimplexDevelopment/Uncraftables.git
synced 2024-11-14 22:23:32 +00:00
36 lines
742 B
Groovy
36 lines
742 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id 'maven-publish'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
maven {
|
||
|
url = uri('https://papermc.io/repo/repository/maven-public/')
|
||
|
}
|
||
|
|
||
|
maven {
|
||
|
url = uri('https://repo.maven.apache.org/maven2/')
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.jetbrains:annotations:RELEASE'
|
||
|
implementation 'org.jetbrains:annotations:20.1.0'
|
||
|
implementation 'com.google.guava:guava:30.1.1-jre'
|
||
|
compileOnly 'io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT'
|
||
|
}
|
||
|
|
||
|
group = 'io.github.paldiu'
|
||
|
version = '1.2.0'
|
||
|
description = 'Uncraftables'
|
||
|
java.sourceCompatibility = JavaVersion.VERSION_17
|
||
|
|
||
|
publishing {
|
||
|
publications {
|
||
|
maven(MavenPublication) {
|
||
|
from(components.java)
|
||
|
}
|
||
|
}
|
||
|
}
|