Guest User

app

a guest
Apr 29th, 2018
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.68 KB | None | 0 0
  1. apply plugin: "org.springframework.boot"
  2.  
  3. dependencies {
  4.     /*******************************
  5.      * Compile Dependencies
  6.      *******************************/
  7.  
  8.     compile(project(":web"))
  9.  
  10.     /*******************************
  11.      * Provided Dependencies
  12.      *******************************/
  13.  
  14.     /*******************************
  15.      * Optional Dependencies
  16.      *******************************/
  17.  
  18.     /*******************************
  19.      * Runtime Dependencies
  20.      *******************************/
  21.  
  22.     /*******************************
  23.      * Test Dependencies
  24.      *******************************/
  25. }
  26.  
  27. springBoot {
  28.     mainClassName = "com.web.WebApplication"
  29. }
Add Comment
Please, Sign In to add comment