* Gradle tutorial project : 1. A multi-project build 2. Inclusive all required tasks and dependency example. * Gradle tutorial is shifted to gradle folder
		
			
				
	
	
		
			19 lines
		
	
	
		
			317 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			317 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin : 'java'
 | |
| apply plugin : 'application'
 | |
| 
 | |
| 
 | |
| 
 | |
| dependencies {
 | |
|     compile project(':greeting-library')
 | |
|     compile project(':greeting-library-java')
 | |
| }
 | |
| 
 | |
| mainClassName = 'greeter.Greeter'
 | |
| run {
 | |
|     if (project.hasProperty("appArgs")) {
 | |
|         args Eval.me(appArgs)
 | |
|     }
 | |
|     else
 | |
|         args = ["Baeldung"];
 | |
| }
 |