apply plugin: 'application' mainClassName = 'net.rubygrapefruit.platform.test.Main' applicationName = 'native-platform-test' archivesBaseName = 'native-platform-test' if (project.hasProperty('remote-artifacts')) { repositories { maven { url "$rootProject.buildDir/repo" } } dependencies { compile "net.rubygrapefruit:native-platform:${version}" } } else { dependencies { compile project(':') } } configurations.archives.artifacts.clear() artifacts { archives distZip }