hassansyyid

Untitled

Aug 5th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.79 KB | None | 0 0
  1. apply plugin: 'java'
  2. apply plugin: 'eclipse'
  3.  
  4. version = '0.1'
  5. jar {
  6.     manifest {
  7.         attributes 'Implementation-Title': 'Gradle Quickstart',
  8.                    'Implementation-Version': version
  9.     }
  10. }
  11.  
  12. repositories {
  13.     mavenCentral()
  14.     maven {
  15.         name 'Sponge maven repo'
  16.         url 'http://repo.spongepowered.org/maven'
  17.     }
  18. }
  19.  
  20. dependencies {
  21.     compile "org.spongepowered:spongeapi:2.1-SNAPSHOT"
  22. }
  23.  
  24. dependencies {
  25.     compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
  26.     testCompile group: 'junit', name: 'junit', version: '4.+'
  27.     compile files('libs/TotalEconomy.jar')
  28. }
  29.  
  30. test {
  31.     systemProperties 'property': 'value'
  32. }
  33.  
  34. uploadArchives {
  35.     repositories {
  36.        flatDir {
  37.            dirs 'repos'
  38.        }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment