forked from JetBrains/gradle-python-envs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (36 loc) · 886 Bytes
/
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
plugins {
id 'idea'
id 'groovy'
id 'com.gradle.plugin-publish' version '0.9.7'
id 'com.palantir.git-version' version '0.8.0'
id 'maven'
}
project.version = gitVersion()
project.group = 'com.jetbrains.python'
sourceCompatibility = '1.6'
targetCompatibility = '1.6'
repositories {
jcenter()
}
uploadArchives {
repositories {
maven {
url uri('../mvn_repo')
}
}
}
dependencies {
compile gradleApi()
}
pluginBundle {
website = 'https://github.com/JetBrains/gradle-python-envs'
vcsUrl = 'https://github.com/JetBrains/gradle-python-envs'
description = 'Gradle plugin to install different Python environments'
tags = ['python', 'miniconda', 'conda']
plugins {
pythonEnvsPlugin {
id = 'com.jetbrains.python.envs'
displayName = 'Gradle Python Envs plugin'
}
}
}