aboutsummaryrefslogtreecommitdiff
path: root/spark-api/build.gradle
blob: 31458af605218484e690968938b94b5b095bcf38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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/'
            }
        }
    }
}