-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathbuild.gradle
58 lines (51 loc) · 1.32 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
51
52
53
54
55
56
57
58
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
}
group 'com.starxg'
version '1.3.0'
sourceCompatibility = 1.8
repositories {
maven { url 'https://maven.aliyun.com/repository/central/'}
maven { url 'https://maven.aliyun.com/repository/public/' }
maven { url 'https://maven.aliyun.com/repository/google/' }
maven { url 'https://maven.aliyun.com/repository/jcenter/'}
maven { url 'https://maven.aliyun.com/repository/gradle-plugin'}
// mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
version '2018.3.6'
// version '2020.2'
// version '2021.2'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
patchPluginXml {
sinceBuild = '183'
// sinceBuild = '145.2070'
untilBuild = ''
changeNotes """
<dl>
<dt><b>${project.getVersion()}</b></dt>
<dd>support custom colors <a href="https://github.com/starxg/mybatis-log-plugin-free/issues/6">#6</a></dd>
<dd>fix <a href="https://github.com/starxg/mybatis-log-plugin-free/issues/5">#5</a></dd>
</dl>
<dl>
<dt>1.2.0</dt>
<dd>support jump</dd>
<dd>bug fixes and improvements</dd>
</dl>
<dl>
<dt>1.1.0</dt>
<dd>support disable formatting</dd>
</dl>
<dl>
<dt>1.0.0</dt>
<dd>Restore mybatis sql log</dd>
</dl>
"""
}