Advertisement
Guest User

Untitled

a guest
Apr 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. tomcat {
  2. httpPort = 8090
  3. httpsPort = 8091
  4. enableSSL = true
  5. contextPath = 'sample-app'
  6.  
  7. users {
  8. user {
  9. username = 'user1'
  10. password = '123456'
  11. roles = ['developers', 'admin']
  12. }
  13.  
  14. user {
  15. username = 'user2'
  16. password = 'abcdef'
  17. roles = ['manager']
  18. }
  19. }
  20. }
  21.  
  22. classpath("org.gradle.api.plugins:gradle-tomcat-plugin:1.2.4")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement