aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: e12cda7b6051004a34502a9bd1c566504d1049f2 (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
29
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',
            "GJavah-Version": project.version
    )
}

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