aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 863f7ce9ac00788c2a0ddb29982fd5d00c97c9ea (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-publish'
    id 'com.github.johnrengelman.shadow' version '6.0.0'
}

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'
    testImplementation 'org.slf4j:slf4j-log4j12:1.7.25'

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

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

publishing {
    publications {
        mavenJava(MavenPublication) {
            from components.java
        }
    }
    repositories {
        mavenLocal()
    }
}

jar {
    manifest {
        attributes('Main-Class': mainClassName)
    }
}
shadowJar {
    archiveFileName = "jysn-${version}.jar";
}

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

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

test {
    useJUnitPlatform()
}