25 lines
		
	
	
		
			451 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			451 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
plugins {
 | 
						|
    id 'java'
 | 
						|
    id 'org.jetbrains.intellij' version '0.4.21'
 | 
						|
}
 | 
						|
 | 
						|
group 'com.baeldung'
 | 
						|
version '1.0-SNAPSHOT'
 | 
						|
 | 
						|
repositories {
 | 
						|
    mavenCentral()
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    testCompile group: 'junit', name: 'junit', version: '4.12'
 | 
						|
}
 | 
						|
 | 
						|
// See https://github.com/JetBrains/gradle-intellij-plugin/
 | 
						|
intellij {
 | 
						|
    version '2020.1.1'
 | 
						|
}
 | 
						|
patchPluginXml {
 | 
						|
    changeNotes """
 | 
						|
      Add change notes here.<br>
 | 
						|
      <em>most HTML tags may be used</em>"""
 | 
						|
} |