aboutsummaryrefslogtreecommitdiff
path: root/spark-api/build.gradle
blob: 0fbe9e1ac2a3c005ad4264a88f06427ccc7bd2f7 (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
33
34
35
36
plugins {
    id 'maven-publish'
}

version = '0.1-SNAPSHOT'

dependencies {
    compileOnly 'org.checkerframework:checker-qual:3.8.0'
    compileOnly 'org.jetbrains:annotations:20.1.0'
}

license {
    header = project.file('HEADER.txt')
}

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/'
            }
        }
    }
}