diff options
author | Luck <git@lucko.me> | 2021-04-07 11:51:03 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2021-04-07 11:51:03 +0100 |
commit | 9228cf8b55dc34a5f49bddfe4637fbd4dd7fecb5 (patch) | |
tree | a2e153c4d723216f95c49153d5afef524dea9531 /spark-api/build.gradle | |
parent | bb3046600f1d1a98a69f918dd59dff64e051480b (diff) | |
download | spark-9228cf8b55dc34a5f49bddfe4637fbd4dd7fecb5.tar.gz spark-9228cf8b55dc34a5f49bddfe4637fbd4dd7fecb5.tar.bz2 spark-9228cf8b55dc34a5f49bddfe4637fbd4dd7fecb5.zip |
Add a basic API for retrieving spark statistics
Diffstat (limited to 'spark-api/build.gradle')
-rw-r--r-- | spark-api/build.gradle | 32 |
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/' + } + } + } +} |