Advertisement
vwjugow

project structure

Mar 24th, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. ├── pom.xml
  2. ├── projectFilesBackup
  3. └── src
  4. ├── integration-test
  5. │   └── WEB-INF
  6. │   └── web.xml
  7. ├── jboss6
  8. │   └── WEB-INF
  9. │   └── web.xml
  10. ├── jboss7
  11. │   ├── META-INF
  12. │   └── WEB-INF
  13. │   └── web.xml
  14. ├── jetty
  15. │   └── WEB-INF
  16. │   └── web.xml
  17. ├── jetty7+
  18. │   └── WEB-INF
  19. │   └── web.xml
  20. ├── main
  21. │   ├── java
  22. │   │   ├── app
  23. │   │   │   ├── client
  24. │   │   │   │   ├── local
  25. │   │   │   │   │   ├── **
  26. │   │   │   │   └── shared
  27. │   │   │   │   ├── **
  28. │   │   │   ├── core
  29. ├── **
  30. │   │   │   ├── server
  31. │   │   │   │   ├── **
  32. │   │   │   └── shiro
  33. │   │   ├── css
  34. │   │   └── images
  35. │   ├── resources
  36. │   │   ├── com
  37. │   │   │   └── app
  38. │   │   │   └── rules
  39. │   │   │   └── process
  40. │   │   │   └── account
  41. │   │   ├── ErraiApp.properties
  42. │   │   ├── ErraiService.properties
  43. │   │   ├── mapping
  44. │   │   └── META-INF
  45. │   └── webapp
  46. │   ├── css
  47. │   ├── font
  48. │   ├── images
  49. │   ├── img
  50. │   │   ├── **
  51. │   ├── META-INF
  52. │   │   └── maven
  53. │   │   └── nu.magick
  54. │   │   └── app.ui
  55. │   │   └── pom.xml
  56. │   ├── misc
  57. │   │   └── elfinder-connector
  58. │   ├── skins
  59. │   │   ├── **
  60. │   └── WEB-INF
  61. │   ├── beans.xml
  62. │   └── web.xml
  63. ├── seleniumtest
  64. │   ├── pom.xml
  65. │   └── src
  66. │   ├── **
  67. ├── test
  68. │   ├── java
  69. │   │   └── app
  70. │   │   ├── client
  71. │   │   │   └── local
  72. │   │   ├── drools
  73. │   │   │   └── marshall
  74. │   │   ├── integration
  75. │   │   │   └── rule
  76. │   │   ├── server
  77. │   │   │   ├── **
  78. │   │   └── Test
  79. │   └── resources
  80. │   ├── db-backup
  81. │   ├── ErraiApp.properties
  82. │   ├── ErraiService.properties
  83. │   └── META-INF
  84. └── tomcat
  85. ├── META-INF
  86. └── WEB-INF
  87. └── web.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement