This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
80 lines (71 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
plugins {
id "java"
id "org.jetbrains.intellij" version "0.4.18"
}
group 'com.guyazhou'
version '3.0.4'
sourceCompatibility = 1.8 // Use jdk8 for compiling
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenCentral()
}
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
dependencies {
// testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
pluginName = 'review-board-support'
version = '2019.3.3'
plugins = ['coverage', 'svn4idea', 'git4idea']
}
patchPluginXml {
sinceBuild = "171.0"
untilBuild = ""
version = version
changeNotes = """
<h4>3.0.4</h4>
<ol>Temporarily fix the issue of not retriving all repositories that more than 25 totally.</ol>
<ol>Some little changes</ol>
<h4>3.0.3</h4>
<ol>Fix some bugs and make some improvements</ol>
<ol>Add debug log</ol>
<h4>3.0.2</h4>
<ol>Fix a bug while showing error dialog for network error</ol>
<h4>3.0.1</h4>
<ol>Fix plugin compatibility verifier</ol>
<h4>3.0</h4>
<ol>
<li>Refactor some code</li>
<li>Fix some issue on mac os</li>
<li>Fix compatibility issue between verson before and after 2018</li>
</ol>
<h4>2.0</h4>
<ol>
<li>Fix compatibility to jetbrains version of 2018</li>
</ol>
<h4>1.5</h4>
<ol>
<li>Add suppourt for Git</li>
</ol>
<h4>1.4</h4>
<ol>
<li>Archive 1.x</li>
<li>1.x only suppourt IDEA that version is less than 181.2218(2018)</li>
<li>Add image to commit action</li>
</ol>
"""
pluginDescription = """
<h2>Features</h2>
<ul>
<li>Support Subversion, Git</li>
<li>Auto review for some users@lvmama</li>
</ul>
<h2>About</h2>
<ul>
<li><a href="https://github.com/asiaon123/review-board-support/blob/master/README.adoc">Usage</a></li>
<li><a href="https://github.com/asiaon123/review-board-support/issues">Issues</a></li>
</ul>
"""
}