pie_flavor

build.gradle

Jul 18th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.74 KB | None | 0 0
  1. plugins {
  2.     id 'idea'
  3.     id 'org.spongepowered.plugin' version '0.6'
  4.     id 'com.qixalite.spongestart' version '1.5.1'
  5.     id 'com.github.johnrengelman.shadow' version '1.2.3'
  6. }
  7.  
  8. group 'flavor.pie'
  9. version '1.0'
  10.  
  11. repositories {
  12.     maven {
  13.         url 'https://jitpack.io'
  14.     }
  15. }
  16.  
  17. configurations {
  18.     compile.extendsFrom shadow
  19. }
  20.  
  21. dependencies {
  22.     compile 'org.spongepowered:spongeapi:5.0.0-SNAPSHOT'
  23.     shadow ('com.github.pie-flavor:morearguments:master-SNAPSHOT') {
  24.         setTransitive(false)
  25.     }
  26. }
  27.  
  28. spongestart {
  29.     eula true
  30. }
  31.  
  32. shadowJar {
  33.     classifier = null
  34.     configurations = [project.configurations.shadow]
  35. }
  36.  
  37. idea {
  38.     module {
  39.         downloadJavadoc true
  40.     }
  41. }
  42.  
  43. build.dependsOn shadowJar
Add Comment
Please, Sign In to add comment