-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
212 lines (181 loc) · 6.48 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
// Reference https://www.jetbrains.org/intellij/sdk/docs/tutorials/build_system/gradle_guide.html
import org.apache.tools.ant.taskdefs.condition.Os
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'org.jetbrains.intellij' version '1.5.2' // https://github.com/JetBrains/gradle-intellij-plugin/releases
id 'com.jetbrains.rdgen' version '2021.3.4' // https://www.myget.org/feed/rd-snapshots/package/maven/com.jetbrains.rd/rd-gen
}
ext {
isWindows = Os.isFamily(Os.FAMILY_WINDOWS)
rdLibDirectory = {
new File(tasks.setupDependencies.idea.get().classes, "lib/rd")
}
}
repositories {
// maven { url 'https://cache-redirector.jetbrains.com/intellij-repository/snapshots' }
maven { url 'https://cache-redirector.jetbrains.com/maven-central' }
}
wrapper {
gradleVersion = '7.4.2'
distributionType = Wrapper.DistributionType.ALL
distributionUrl = "https://cache-redirector.jetbrains.com/services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
}
version = ext.PluginVersion
sourceSets {
main {
java.srcDir 'src/rider/main/java'
kotlin.srcDir 'src/rider/main/kotlin'
resources.srcDir 'src/rider/main/resources'
}
}
compileKotlin {
kotlinOptions { jvmTarget = "1.8" }
}
task setBuildTool {
doLast {
ext.args = []
ByteArrayOutputStream stdout = new ByteArrayOutputStream()
if (isWindows) {
exec {
executable "${rootDir}\\tools\\vswhere.exe"
args '-latest','-property','installationPath','-products','*'
standardOutput = stdout
workingDir rootDir
}
List<String> files = new FileNameFinder().getFileNames("${stdout.toString().trim()}\\MSBuild", "**/MSBuild.exe")
ext.executable = files.get(0)
ext.args << "/v:minimal"
} else {
ext.executable = "dotnet"
ext.args << "msbuild"
}
ext.args << "${DotnetSolution}"
ext.args << "/p:Configuration=${BuildConfiguration}"
ext.args << "/p:HostFullIdentifier="
}
}
task compileDotNet {
dependsOn setBuildTool
doLast {
def arguments = setBuildTool.args.clone()
arguments << "/t:Restore;Rebuild"
exec {
executable setBuildTool.executable
args arguments
workingDir rootDir
}
}
}
buildPlugin {
doLast {
copy {
from "${buildDir}/distributions/${rootProject.name}-${version}.zip"
into "${rootDir}/output"
}
// TODO: See also org.jetbrains.changelog: https://github.com/JetBrains/gradle-changelog-plugin
def changelogText = file("${rootDir}/CHANGELOG.md").text
def changelogMatches = changelogText =~ /(?s)(-.+?)(?=##|$)/
def changeNotes = changelogMatches.collect {
it[1].replaceAll(/(?s)- /, "\u2022 ").replaceAll(/`/, "").replaceAll(/,/, "%2C").replaceAll(/;/, "%3B")
}.take(1).join("")
def arguments = setBuildTool.args.clone()
arguments << "/t:Pack"
arguments << "/p:PackageOutputPath=${rootDir}/output"
arguments << "/p:PackageReleaseNotes=${changeNotes}"
arguments << "/p:PackageVersion=${version}"
exec {
executable setBuildTool.executable
args arguments
workingDir rootDir
}
}
}
intellij {
type = 'RD'
version = "${ProductVersion}"
downloadSources = false
instrumentCode = false
// TODO: add plugins
// plugins = ["uml", "com.jetbrains.ChooseRuntime:1.0.9"]
}
task deleteLogs(type: Delete) {
delete project.layout.buildDirectory.dir("idea-sandbox/system/log")
}
runIde {
dependsOn("deleteLogs")
// Match Rider's default heap size of 1.5Gb (default for runIde is 512Mb)
maxHeapSize = "1500m"
// Rider's backend doesn't support dynamic plugins. It might be possible to work with auto-reload of the frontend
// part of a plugin, but there are dangers about keeping plugins in sync
autoReloadPlugins = false
// gradle-intellij-plugin will download the default version of the JBR for the snapshot. Update if required
// jbrVersion = "jbr_jcef-11_0_6b765.40" // https://confluence.jetbrains.com/display/JBR/Release+notes
}
rdgen {
def modelDir = new File(rootDir, "protocol/src/main/kotlin")
def csOutput = new File(rootDir, "src/dotnet/${DotnetPluginId}/Rider")
def ktOutput = new File(rootDir, "src/rider/main/kotlin/${RiderPluginId.replace('.','/').toLowerCase()}")
verbose = true
classpath {
"${rdLibDirectory()}/rider-model.jar"
}
sources "${modelDir}/model/rider"
hashFolder = "${buildDir}"
packages = "model.rider"
generator {
language = "kotlin"
transform = "asis"
root = "com.jetbrains.rider.model.nova.ide.IdeRoot"
namespace = "org.rider.plugins.sampleriderplugin"
directory = "$ktOutput"
}
generator {
language = "csharp"
transform = "reversed"
root = "com.jetbrains.rider.model.nova.ide.IdeRoot"
namespace = "ReSharperPlugin.SampleRiderPlugin.Rider"
directory = "$csOutput"
}
}
patchPluginXml {
// TODO: See also org.jetbrains.changelog: https://github.com/JetBrains/gradle-changelog-plugin
def changelogText = file("${rootDir}/CHANGELOG.md").text
def changelogMatches = changelogText =~ /(?s)(-.+?)(?=##|$)/
changeNotes = changelogMatches.collect {
it[1].replaceAll(/(?s)\r?\n/, "<br />\n")
}.take(1).join('')
}
prepareSandbox {
dependsOn compileDotNet
def outputFolder = "${rootDir}/src/dotnet/${DotnetPluginId}/bin/${DotnetPluginId}.Rider/${BuildConfiguration}"
def dllFiles = [
"$outputFolder/${DotnetPluginId}.dll",
"$outputFolder/${DotnetPluginId}.pdb",
// TODO: add additional assemblies
]
dllFiles.forEach({ f ->
def file = file(f)
from(file, { into "${rootProject.name}/dotnet" })
})
doLast {
dllFiles.forEach({ f ->
def file = file(f)
if (!file.exists()) throw new RuntimeException("File ${file} does not exist")
})
}
}
publishPlugin {
dependsOn buildPlugin
token = "${PublishToken}"
doLast {
exec {
executable "dotnet"
args "nuget","push","output/${DotnetPluginId}.${version}.nupkg","--api-key","${PublishToken}","--source","https://plugins.jetbrains.com"
workingDir rootDir
}
}
}
buildSearchableOptions{
enabled = false
}