Skip to content
Snippets Groups Projects
Select Git revision
  • 4401502c5d34921245fca4581ebcf3c5f7cb6326
  • master default protected
  • devops
  • deeksha
4 results

TestGradleApplication.java

Blame
  • TestGradleApplication.java 317 B
    package com.example.demo;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class TestGradleApplication {
    
    	public static void main(String[] args) {
    		SpringApplication.run(TestGradleApplication.class, args);
    	}
    
    }