14 lines
		
	
	
		
			272 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			272 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
|   repositories{
 | |
|       mavenCentral()
 | |
|   }
 | |
|   apply plugin: 'java'
 | |
|   apply plugin: 'maven'
 | |
|   apply plugin: com.baeldung.GreetingPlugin
 | |
|   dependencies {
 | |
|       compile gradleApi()
 | |
|   }
 | |
| 
 | |
|   greeting {
 | |
|       greeter = "Stranger"
 | |
|       message = "Message from the build script!"
 | |
|   } |