Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apply plugin: 'java'
- apply plugin: 'maven'
- apply plugin: 'application'
- String mavenGroupId = 'thufir'
- String mavenVersion = '1.0-SNAPSHOT'
- sourceCompatibility = '1.8'
- [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
- // NetBeans will automatically add "run" and "debug" tasks relying on the
- // "mainClass" property. You may however define the property prior executing
- // tasks by passing a "-PmainClass=<QUALIFIED_CLASS_NAME>" argument.
- //
- // Note however, that you may define your own "run" and "debug" task if you
- // prefer. In this case NetBeans will not add these tasks but you may rely on
- // your own implementation.
- mainClassName = 'net.bounceme.dur.nfl.Run'
- if (!hasProperty('mainClass')) {
- ext.mainClass = 'net.bounceme.dur.nfl.Run'
- }
- repositories {
- // mavenCentral()
- // You may define additional repositories, or even remove "mavenCentral()".
- // Read more about repositories here:
- // http://www.gradle.org/docs/current/userguide/dependency_management.html#sec:repositories
- maven{
- url "https://plugins.gradle.org/m2/"}
- }
- dependencies {
- //TODO: Add dependencies here ...
- //You can read more about how to add dependency here:
- //http://www.gradle.org/docs/current/userguide/dependency_management.html#sec:how_to_declare_your_dependencies
- //testCompile group: 'junit', name: 'junit', version: '4.10'
- // compile 'com.google.api-client:google-api-client:1.20.0'
- // classpath "gradle.plugin.com.github.rzabini:gradle-jython:1.0.2"
- compile "gradle.plugin.com.github.rzabini:gradle-jython:1.0.2"
- }
- sourceSets {
- main {
- manifest.srcFile 'AndroidManifest.xml'
- // java.srcDirs = ['src']
- // resources.srcDirs = ['src']
- // aidl.srcDirs = ['src']
- // renderscript.srcDirs = ['src']
- // res.srcDirs = ['res']
- // assets.srcDirs = ['assets']
- }
Advertisement
Add Comment
Please, Sign In to add comment