/* * This build file was generated by the Gradle 'init' task. * * This generated file contains a sample Java Library project to get you started. * For more details take a look at the Java Libraries chapter in the Gradle * user guide available at https://docs.gradle.org/3.5/userguide/java_library_plugin.html */ plugins { id 'biz.aQute.bnd.builder' } // In this section you declare where to find the dependencies of your project repositories.jcenter() dependencies { compile project(':mucommander-commons-file') testCompile 'org.testng:testng:6.11' } jar { bnd ('Bundle-Name': 'muCommander-gzip', 'Bundle-Vendor': 'muCommander', 'Bundle-Description': 'Library with configuration tools', 'Bundle-DocURL': 'https://www.mucommander.com', 'Export-Package': 'com.mucommander.commons.file.archive.gzip', 'Bundle-Activator': 'com.mucommander.commons.file.archive.gzip.Activator', 'Specification-Title': "muCommander", 'Specification-Vendor': "Arik Hadas", 'Specification-Version': version, 'Implementation-Title': "muCommander", 'Implementation-Vendor': "Arik Hadas", 'Implementation-Version': revision.substring(0, 7), 'Build-Date': new Date().format('yyyyMMdd'), 'Build-Url': "https://www.mucommander.com/version/nightly.xml") }