forked from matkoch/resharper-testlinker
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
228 lines (194 loc) · 6.95 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// 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.8.10'
id 'org.jetbrains.intellij' version '1.13.3' // See https://github.com/JetBrains/gradle-intellij-plugin/releases
id 'com.jetbrains.rdgen' version '2023.1.2' // See https://github.com/JetBrains/rd/releases
id 'me.filippov.gradle.jvm.wrapper' version '0.14.0'
}
ext {
isWindows = Os.isFamily(Os.FAMILY_WINDOWS)
rdLibDirectory = {
new File(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.6'
distributionType = Wrapper.DistributionType.ALL
distributionUrl = "https://cache-redirector.jetbrains.com/services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
}
version = ext.PluginVersion
tasks.named("processResources") {
from("dependencies.json", { into "META-INF" })
}
sourceSets {
main {
java.srcDir 'src/rider/main/java'
kotlin.srcDir 'src/rider/main/kotlin'
resources.srcDir 'src/rider/main/resources'
}
}
compileKotlin {
kotlinOptions { jvmTarget = "17" }
}
task setBuildTool {
doLast {
ext.executable = "dotnet"
ext.args = ["msbuild"]
if (isWindows) {
ByteArrayOutputStream stdout = new ByteArrayOutputStream()
exec {
executable "${rootDir}\\tools\\vswhere.exe"
args '-latest','-property','installationPath','-products','*'
standardOutput = stdout
workingDir rootDir
}
def directory = stdout.toString().trim()
if (directory) {
List<String> files = new FileNameFinder().getFileNames("${directory}\\MSBuild", "**/MSBuild.exe")
ext.executable = files.get(0)
ext.args = ["/v:minimal"]
}
}
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
}
}
}
task testDotNet {
doLast {
exec {
executable "dotnet"
args "test","${DotnetSolution}"
workingDir rootDir
}
}
}
buildPlugin {
dependsOn testDotNet
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"]
}
runIde {
// 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/model")
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}/rider"
hashFolder = "${buildDir}"
packages = "model.rider"
generator {
language = "kotlin"
transform = "asis"
root = "com.jetbrains.rider.model.nova.ide.IdeRoot"
namespace = "com.jetbrains.rider.model"
directory = "$ktOutput"
}
generator {
language = "csharp"
transform = "reversed"
root = "com.jetbrains.rider.model.nova.ide.IdeRoot"
namespace = "JetBrains.Rider.Model"
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 testDotNet
dependsOn buildPlugin
token = "${PublishToken}"
// The following block is responsible for uploading the R# part of the plugin.
// We don't need this yet, because the plugin is meant for Rider only. Therefore it is disabled.
// See here for more information: https://github.com/JetBrains/resharper-rider-plugin/issues/46
//
// doLast {
// exec {
// executable "dotnet"
// args "nuget","push","output/${DotnetPluginId}.${version}.nupkg","--api-key","${PublishToken}","--source","https://plugins.jetbrains.com"
// workingDir rootDir
// }
// }
}