-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts.old
53 lines (42 loc) · 1.26 KB
/
build.gradle.kts.old
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
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("java")
id("org.jetbrains.intellij.platform") version "2.1.0"
}
group = "com.namecheap"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
dependencies {
intellijPlatform {
pycharmCommunity("2024.3")
bundledPlugin("PythonCore")
pluginVerifier()
zipSigner()
instrumentationTools()
testFramework(TestFrameworkType.Platform)
}
compileOnly("org.projectlombok:lombok:1.18.36")
annotationProcessor("org.projectlombok:lombok:1.18.36")
testCompileOnly("org.projectlombok:lombok:1.18.36")
testAnnotationProcessor("org.projectlombok:lombok:1.18.36")
testImplementation("org.assertj:assertj-core:3.24.2")
}
intellijPlatform {
pluginConfiguration {
id.set("com.namecheap.rpc.type.inference")
name.set("RPC Type Inference")
version.set("1.0.0")
description.set("Provides type inference and autocompletion support for Nameko RPC services")
changeNotes.set("""
First version:
- RPC service detection
- Type inference
- Code completion
""".trimIndent())
}
}