Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. plugins {
  2. id 'com.github.johnrengelman.shadow' version '5.0.0'
  3. id 'java'
  4. }
  5.  
  6. group 'com.okayd'
  7. version '1.0-SNAPSHOT'
  8.  
  9. sourceCompatibility = 1.8
  10.  
  11. repositories {
  12. mavenCentral()
  13. jcenter()
  14. }
  15.  
  16. dependencies {
  17. testCompile group: 'junit', name: 'junit', version: '4.12'
  18. compile 'net.dv8tion:JDA:3.8.3_463'
  19. compile 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
  20. }
  21.  
  22. jar {
  23. manifest {
  24. attributes(
  25. 'Main-Class': 'Main'
  26. )
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement