Advertisement
Guest User

Untitled

a guest
Aug 19th, 2015
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. /////////////////////////PROJECT A///////////////////
  2.  
  3. def APACHE_PATH_CLASSES = "C:/Program Files/Apache Software Foundation/Tomcat 7.0/webapps/servlet/WEB-INF/classes"
  4.  
  5. sourceSets {
  6. main {
  7. //output.classesDir = 'C:/Program Files/Apache Software Foundation/Tomcat 7.0/webapps/servlet/WEB-INF/classes/com/'
  8. output.classesDir = "$APACHE_PATH_CLASSES/com"
  9. }
  10. }
  11.  
  12. ////////////////////////PROJECT B////////////////////////////
  13.  
  14. def APACHE_PATH_CLASSES = "C:/Program Files/Apache Software Foundation/Tomcat 7.0/webapps/servlet/WEB-INF/classes"
  15.  
  16. dependencies {
  17. compile project(':ProjectA')
  18. }
  19.  
  20. sourceSets {
  21. main {
  22. //output.classesDir = 'C:/Program Files/Apache Software Foundation/Tomcat 7.0/webapps/servlet/WEB-INF/classes/'
  23. output.classesDir = "$APACHE_PATH_CLASSES"
  24. }
  25. }
  26.  
  27. ///////////////////////PROJECT C///////////////////////////////////
  28.  
  29. def APACHE_PATH_CLASSES = "C:/Program Files/Apache Software Foundation/Tomcat 7.0/webapps/servlet/WEB-INF/classes"
  30.  
  31. dependencies {
  32. compile project(':ProjectA')
  33. }
  34.  
  35. sourceSets {
  36. main {
  37. //output.classesDir = 'C:/Program Files/Apache Software Foundation/Tomcat 7.0/webapps/servlet/WEB-INF/classes/'
  38. output.classesDir = "$APACHE_PATH_CLASSES"
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement