aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 0703a89cb978883db7dcb004f54ef46ea292be66 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
plugins {
    id 'java'
    id 'application'
    id 'maven'
}

group = 'com.jsyn'
version = '17.0.0-SNAPSHOT'
sourceCompatibility = '1.8'
mainClassName = 'com.jsyn.apps.AboutJSyn'

repositories {
    mavenCentral()
    mavenLocal()
}

dependencies {
    testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'

    implementation 'org.slf4j:slf4j-api:1.7.25'

    // I'm unsure weather or not to keep the logging implementation here and not as a 'testImplementation', as libraries
    // aren't usually meant to be ran.
//    implementation 'org.slf4j:slf4j-log4j12:1.7.25'

    implementation fileTree(dir: 'libs', include: '*.jar')
}

jar {
    manifest {
        attributes('Main-Class': mainClassName)
    }

    from {
        configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
    }
}

javadoc {
    exclude 'com/portaudio/**'
    exclude 'com/jsyn/devices/jportaudio/**'
    source = sourceSets.main.allJava

    options {
        addStringOption('Xdoclint:none', '-quiet')
    }
}

task javadocJar(type: Jar) {
    classifier = 'javadoc'
    from javadoc
}

artifacts {
    archives javadocJar
}

test {
    useJUnitPlatform()
}