forked from ashald/EnvFile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (39 loc) · 985 Bytes
/
build.gradle
File metadata and controls
46 lines (39 loc) · 985 Bytes
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
plugins {
id "java"
id "org.jetbrains.intellij" version "0.3.11"
id "pl.allegro.tech.build.axion-release" version "1.9.3"
}
group "net.ashald"
scmVersion {
tag {
prefix = "v"
versionSeparator = ""
}
}
allprojects {
repositories {
mavenCentral()
}
project.version = scmVersion.version
ext.jetbrains = [
'version' : "2018.2",
'pycharm' : "PythonCore:2018.2.182.3684.2",
'rubymine': "org.jetbrains.plugins.ruby:2018.2.20180716",
'goland' : "org.jetbrains.plugins.go:182.3684.59.834"
]
}
intellij {
version jetbrains.version
pluginName "EnvFile"
sameSinceUntilBuild false
updateSinceUntilBuild false
}
dependencies {
compile project(":envfile-products-idea")
compile project(":envfile-products-pycharm")
compile project(":envfile-products-rubymine")
compile project(":envfile-products-goland")
}
wrapper {
gradleVersion = "4.10.2"
}