-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
50 lines (43 loc) · 1.17 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id "org.jetbrains.intellij" version "0.6.1"
}
group 'com.github.braisdom'
version '1.3.4'
repositories {
mavenLocal()
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
maven { url 'https://jitpack.io' }
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
apply plugin: 'java'
apply plugin: 'idea'
idea {
project {
jdkName = '1.8'
languageLevel = '1.8'
}
}
apply plugin: 'java'
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:deprecation"
}
apply plugin: 'org.jetbrains.intellij'
intellij {
version = "2020.2"
type = 'IC'
updateSinceUntilBuild = false
downloadSources = true
plugins = ['java']
}
patchPluginXml {
changeNotes """
<p>1. Generating setter and getter methods for model who has annotation @DomainModel</p>
<p>2. Generating query and persistence methods for model who has annotation @DomainModel</p>
<p>3. Generating query method for field who has annotation @Queryable</p>
<p>4. Generating relation method for field who has annotation @Relation</p>
<p>...</p>"""
}