aboutsummaryrefslogblamecommitdiff
path: root/build.gradle
blob: 9bdd733a9640cec59655a8cda86ce75ac2f1f85a (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                        
                 
             
 
                             
 





                                                





                  

                                                             



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