aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 9bdd733a9640cec59655a8cda86ce75ac2f1f85a (plain) (blame)
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
plugins {
    id 'java'
    id "org.javamodularity.moduleplugin" version "1.6.0"
}

group 'org.glavo'
version '0.2'

modularity.mixedJavaRelease 8

jar {
    manifest.attributes(
            'Implementation-Version': '1.2',
            'Main-Class': 'org.glavo.javah.Main'
    )
}

repositories {
    mavenCentral()
}

dependencies {
    // https://mvnrepository.com/artifact/org.ow2.asm/asm
    compile group: 'org.ow2.asm', name: 'asm', version: '7.2'

    testCompile group: 'junit', name: 'junit', version: '4.12'
}