Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. buildscript {
  2. dependencies {
  3. classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
  4.  
  5. }
  6. repositories {
  7.  
  8. mavenLocal()
  9. mavenCentral()
  10.  
  11. }
  12. }
  13. apply plugin: 'application'
  14. apply plugin: 'java'
  15. if (!hasProperty('mainClass')) {
  16. ext.mainClass = "Main.Launcher"
  17. }
  18. repositories {
  19. mavenLocal()
  20. mavenCentral()
  21. }
  22. dependencies{
  23. testCompile group: 'junit', name: 'junit', version: '4.10'
  24. compile "io.reactivex.rxjava2:rxjava:2.1.0"
  25. // https://mvnrepository.com/artifact/com.jfoenix/jfoenix
  26. compile group: 'com.jfoenix', name: 'jfoenix', version: '1.6.0'
  27. // https://mvnrepository.com/artifact/org.hibernate/hibernate-gradle-plugin
  28. compile group: 'org.hibernate', name: 'hibernate-gradle-plugin', version: '5.2.10.Final'
  29. // https://mvnrepository.com/artifact/org.hibernate/hibernate-core
  30. compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
  31. // https://mvnrepository.com/artifact/org.hibernate/hibernate-annotations
  32. compile group: 'org.hibernate', name: 'hibernate-annotations', version: '3.5.6-Final'
  33. // https://mvnrepository.com/artifact/mysql/mysql-connector-java
  34. compile group: 'mysql', name: 'mysql-connector-java', version: '6.0.6'
  35. // https://mvnrepository.com/artifact/log4j/log4j
  36. compile group: 'log4j', name: 'log4j', version: '1.2.17'
  37. // https://mvnrepository.com/artifact/de.jensd/fontawesomefx
  38. compile group: 'de.jensd', name: 'fontawesomefx', version: '8.9'
  39. }
  40. apply plugin: 'javafx-gradle-plugin'
  41.  
  42.  
  43. jfx {
  44. appName = 'StudentManager'
  45. vendor = 'shaheen'
  46. // minimal requirement for jfxJar-task
  47. mainClass = "Main.Launcher"
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement