aboutsummaryrefslogtreecommitdiffstats
path: root/demo_gradle/build.gradle
blob: 996836020a288b1129ff31e1e7ceafeaa6bf9402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
subprojects {
  apply plugin: 'java'

  repositories {
    mavenLocal()
    mavenCentral()
  }
}
// plugin location
ext.pluginsDir = rootProject.buildDir.path + '/plugins'

task build(dependsOn: [':app:uberjar'])