-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (51 loc) · 1.3 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
plugins {
id 'java'
id 'java-library'
id 'java-gradle-plugin'
id 'org.jetbrains.kotlin.jvm' version '1.7.10'
id 'maven-publish'
}
group 'org.jetbrains.research'
version '22.0.0'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven {
url = 'https://maven.polytech.vorpal-research.science'
}
maven {
url = 'https://maven.vorpal-research.science'
}
}
dependencies {
implementation gradleApi()
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation group: 'org.jetbrains.research',
name: 'kfirst-runner',
version: '22.0.0'
}
compileKotlin {
kotlinOptions.jvmTarget = '1.8'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}
publishing {
repositories {
maven {
name = 'KotlinPolytechGitHubPackages'
url = uri('https://maven.pkg.github.com/Kotlin-Polytech/kotlin-maven')
credentials {
username = project.findProperty('github.user')
password = project.findProperty('github.pass')
}
}
}
publications {
KotlinPolytechGitHubPackages(MavenPublication) {
from(components.java)
}
}
}
gradlePlugin { automatedPublishing = false }