-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
42 lines (38 loc) · 958 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 'java'
id 'maven-publish'
id 'java-gradle-plugin'
}
gradlePlugin {
plugins {
hyperskillVersionPlugin {
id = "hyperskill"
implementationClass = "org.hyperskill.plugin.HyperskillVersionPlugin"
}
}
}
group 'org.hyperskill'
version '1.7'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
publishing {
publications {
maven(MavenPublication) {
groupId = "com.github.hyperskill"
artifactId = "hs-gradle-plugin"
version = "release-SNAPSHOT"
from components.java
}
}
repositories {
maven {
url "https://packages.jetbrains.team/maven/p/hyperskill-hs-test/maven"
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
}
}
}