Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. jcenter()
  4. mavenLocal()
  5. }
  6. dependencies {
  7. // Multi-OS Engine plugin
  8. classpath group: 'org.multi-os-engine', name: 'moe-gradle', version: '2.0.0-alpha-1'
  9. //classpath group: 'org.multi-os-engine', name: 'moe-gradle', version: '1.3.9'
  10. }
  11. }
  12.  
  13.  
  14. // Apply plugins
  15. apply plugin: 'eclipse'
  16. apply plugin: 'moe'
  17.  
  18. // Set source and target to Java 8
  19. sourceCompatibility = "1.8"
  20. targetCompatibility = "1.8"
  21.  
  22. // Set maven repository
  23. repositories {
  24. jcenter()
  25. }
  26.  
  27. // Exclude all files from Gradle's test runner
  28. test { exclude '**' }
  29.  
  30.  
  31.  
  32.  
  33. // Setup Multi-OS Engine
  34. moe {
  35. proguardLevel 'app'
  36.  
  37.  
  38. xcode {
  39. project 'xcode/GoetheApp.xcodeproj'
  40. mainTarget 'GoetheApp'
  41. testTarget 'GoetheApp-Test'
  42.  
  43. // Uncomment and change these settings if you are working with a Xcode workspace
  44. // workspace 'xcode/GoetheApp.xcworkspace'
  45. // mainScheme 'GoetheApp'
  46. // testScheme 'GoetheApp-Test'
  47. }
  48. }
  49.  
  50. dependencies {
  51. // Compile with 'jar' files in the project's 'lib' directory
  52. compile fileTree(include: '*.jar', dir: 'lib')
  53. compile 'com.fasterxml.jackson.core:jackson-databind:2.0.1'
  54. compile project(':webserverdownload')
  55. }
  56.  
  57. // Setup Eclipse
  58. eclipse {
  59. // Set Multi-OS Engine nature
  60. project {
  61. natures 'org.multi-os-engine.project'
  62. }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement