You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 215B

1234567891011121314
  1. subprojects {
  2. apply plugin: 'java'
  3. repositories {
  4. mavenLocal()
  5. mavenCentral()
  6. }
  7. }
  8. // plugin location
  9. ext.pluginsDir = rootProject.buildDir.path + '/plugins'
  10. task build(dependsOn: [':app:uberjar'])