-
-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathbuild.gradle
More file actions
76 lines (62 loc) · 1.38 KB
/
build.gradle
File metadata and controls
76 lines (62 loc) · 1.38 KB
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
plugins {
id "java"
id "idea"
id "org.jetbrains.intellij.platform" version "2.13.1"
id "pl.allegro.tech.build.axion-release" version "1.21.1"
}
group "net.ashald"
scmVersion {
tag {
prefix = "v"
versionSeparator = ""
}
}
allprojects {
apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
repositories {
mavenCentral()
}
project.version = scmVersion.version
ext.jetbrains = [
version : "2025.3",
scala : "org.intellij.scala:2025.3.26"
]
}
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
intellijPlatform {
projectName = "EnvFile"
buildSearchableOptions = false
pluginConfiguration {
name = "EnvFile"
ideaVersion {
sinceBuild = "243"
}
}
pluginVerification {
ides {
recommended()
}
}
}
dependencies {
intellijPlatform {
intellijIdea(jetbrains.version)
bundledPlugin("com.intellij.java")
}
implementation project(":envfile-products-idea")
implementation project(":envfile-products-pycharm")
implementation project(":envfile-products-rubymine")
implementation project(":envfile-products-goland")
}
wrapper {
gradleVersion = "9.2.1"
}