Advertisement
Guest User

build.gradle

a guest
Aug 16th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.04 KB | None | 0 0
  1. apply plugin: 'java'
  2. apply plugin: 'application'
  3.  
  4. sourceSets {
  5.     main {
  6.         java {
  7.             srcDir 'src'
  8.             srcDir 'gen'
  9.         }
  10.     }
  11.     test {
  12.         java {
  13.             srcDir 'test'
  14.             srcDir 'src'
  15.             srcDir 'gen'
  16.         }
  17.     }
  18. }
  19.  
  20. mainClassName = 'dio.Main'
  21.  
  22. dependencies {
  23.     compile "org.java-websocket:Java-WebSocket:1.3.9"
  24.     compile group: 'org.jbox2d', name: 'jbox2d', version: '2.1.2.2', ext: 'pom'
  25.     compile 'com.google.code.gson:gson:2.8.5'
  26.     compile group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta2'
  27.     compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.0-alpha4'
  28.     compile group: 'ch.qos.logback', name: 'logback-core', version: '1.3.0-alpha4'
  29.     compile group: 'org.jetbrains', name: 'annotations', version: '16.0.2'
  30.     compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.6.1'
  31.     testCompile 'junit:junit:4.12'
  32.     testCompile group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'
  33. }
  34.  
  35. repositories {
  36.     mavenCentral();
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement