Advertisement
Guest User

Untitled

a guest
Oct 8th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.40 KB | None | 0 0
  1. group 'org.stackoverflow'
  2. version '1.0-SNAPSHOT'
  3.  
  4. apply plugin: 'java'
  5.  
  6. sourceCompatibility = 1.8
  7.  
  8. repositories {
  9.     mavenCentral()
  10.     maven {
  11.         url 'https://oss.sonatype.org/content/repositories/snapshots/'
  12.     }
  13. }
  14.  
  15. dependencies {
  16.     testCompile group: 'junit', name: 'junit', version: '4.12'
  17.     compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '1.0.0-SNAPSHOT'
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement