-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.gradle
176 lines (148 loc) · 5.22 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
// 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.22'
id 'org.jetbrains.intellij' version '1.16.0' // https://github.com/JetBrains/gradle-intellij-plugin/releases
id 'com.jetbrains.rdgen' version '2023.3.2' // https://github.com/JetBrains/rd/releases
}
ext {
isWindows = Os.isFamily(Os.FAMILY_WINDOWS)
rdLibDirectory = {
new File(setupDependencies.idea.get().classes, "lib/rd")
}
resharperHostLibDirectory = {
new File(setupDependencies.classes, "lib/ReSharperHost")
}
aiKey = System.getenv('APPINSIGHTSINSTRUMENTATIONKEY')
}
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
if (ext.has("username")) intellij.publish.username = ext.username
if (ext.has("password")) intellij.publish.password = ext.password
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.args = []
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 = ["msbuild","/t:Restore;Rebuild","${DotnetSolution}","/p:Configuration=${BuildConfiguration}","/p:HostFullIdentifier=","/p:AssemblyVersion=${version}"]
if (aiKey) arguments << "/p:AppInsightsInstrumentationKey=${aiKey}";
exec {
executable setBuildTool.executable
args arguments
workingDir rootDir
}
}
}
buildPlugin {
doLast {
copy {
from "${buildDir}/distributions/${rootProject.name}-${version}.zip"
into "${rootDir}/output"
}
}
}
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/com/jetbrains/rider/plugins/${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 {
def changelogText = file("${rootDir}/CHANGELOG.md").text
def changelogMatches = changelogText =~ /(?s)(-.+?)(?=##|$)/
changeNotes = changelogMatches.collect {
it[1].replaceAll(/(?s)- /, "\u2022 ").replaceAll(/`/, "").replaceAll(/,/, "%2C").replaceAll(/;/, "%3B")
}.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 "${intellij.pluginName.get()}/dotnet" })
})
into("${intellij.pluginName.get()}/projectTemplates") {
from("projectTemplates")
}
doLast {
dllFiles.forEach({ f ->
def file = file(f)
if (!file.exists()) throw new RuntimeException("File ${file} does not exist")
})
}
}
publishPlugin {
dependsOn buildPlugin
if (hasProperty('intellijPublishToken')) {
token intellijPublishToken
}
}