aboutsummaryrefslogtreecommitdiff
path: root/spark-api/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'spark-api/build.gradle')
-rw-r--r--spark-api/build.gradle32
1 files changed, 32 insertions, 0 deletions
diff --git a/spark-api/build.gradle b/spark-api/build.gradle
new file mode 100644
index 0000000..31458af
--- /dev/null
+++ b/spark-api/build.gradle
@@ -0,0 +1,32 @@
+plugins {
+ id 'maven-publish'
+}
+
+version = '0.1-SNAPSHOT'
+
+dependencies {
+ compileOnly 'org.checkerframework:checker-qual:3.8.0'
+ compileOnly 'org.jetbrains:annotations:20.1.0'
+}
+
+publishing {
+ //repositories {
+ // maven {
+ // url = 'https://oss.sonatype.org/content/repositories/snapshots'
+ // credentials {
+ // username = sonatypeUsername
+ // password = sonatypePassword
+ // }
+ // }
+ //}
+ publications {
+ mavenJava(MavenPublication) {
+ from components.java
+ pom {
+ name = 'spark'
+ description = 'spark is a performance profiling plugin/mod for Minecraft clients, servers and proxies.'
+ url = 'https://spark.lucko.me/'
+ }
+ }
+ }
+}