-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
72 lines (64 loc) · 2.1 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.4.20'
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
maven() {
url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/"
}
maven() {
url "https://dl.google.com/dl/android/maven2"
}
maven() {
url "https://jcenter.bintray.com"
}
maven() {
url "https://dl.bintray.com/kotlin/kotlin-dev"
}
maven() {
url "https://dl.bintray.com/kotlin/kotlin-eap"
}
maven() {
url 'https://jitpack.io'
}
maven() {
url "http://dl.bintray.com/vorpal-research/kotlin-maven"
}
maven() {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
ext {
kotlin_version = '1.4.20'
aetherVersion = '1.1.0'
}
dependencies {
//Intellij core
compile group: 'com.android.tools.external.com-intellij', name: 'intellij-core', version: '27.1.3'
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
//Kootstrap
compile group: 'org.apache.maven', name: 'maven-model-builder', version: '3.3.9'
compile "org.apache.maven:maven-aether-provider:3.3.3"
compile "org.eclipse.aether:aether-api:1.1.0"
compile "org.eclipse.aether:aether-util:1.1.0"
compile "org.eclipse.aether:aether-impl:${aetherVersion}"
compile group: 'org.eclipse.aether', name: 'aether-connector-basic', version: "${aetherVersion}"
compile "org.eclipse.aether:aether-transport-file:${aetherVersion}"
compile "org.eclipse.aether:aether-transport-http:${aetherVersion}"
compile "org.eclipse.aether:aether-transport-wagon:${aetherVersion}"
compile "org.apache.maven:maven-aether-provider:3.3.3"
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
compile "commons-io:commons-io:2.6"
//Kotlin
compile group: 'org.jetbrains.kotlin', name: 'kotlin-compiler', version: "${kotlin_version}"
}
test {
useJUnitPlatform()
}