* Gradle tutorial project : 1. A multi-project build 2. Inclusive all required tasks and dependency example. * Gradle tutorial is shifted to gradle folder
		
			
				
	
	
		
			11 lines
		
	
	
		
			190 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			190 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| package greeter
 | |
| 
 | |
| import groovy.transform.CompileStatic
 | |
| 
 | |
| @CompileStatic
 | |
| class GreetingFormatter{
 | |
|     static String greeting(final String name) {
 | |
|         "Hello, ${name.capitalize()}"
 | |
|     }
 | |
| }
 |