-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle.kts
74 lines (67 loc) · 2.41 KB
/
build.gradle.kts
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
73
74
/*
* Copyright (c) 2024, APT Group, Department of Computer Science,
* The University of Manchester.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Main configuration for the TornadoVM IDEA plugin.
// Apply the required plugins for Java and IntelliJ IDEA development.
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.8.21"
id("org.jetbrains.intellij") version "1.16.1"
}
// Define the group and version of the plugin.
group = "uk.ac.manchester.beehive.tornado.plugins"
version = "1.2.3"
// Define the repositories where dependencies can be fetched.
repositories {
mavenCentral()
}
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
// Set the version of IntelliJ IDEA that the plugin targets.
version.set("2024.2")
// Define the type of the IntelliJ Platform (IC = IntelliJ IDEA Community).
type.set("IC") // Target IDE Platform
// Specify any additional plugins this plugin depends on.
plugins.set(listOf("com.intellij.java"))
}
dependencies {}
tasks {
// Set the JVM compatibility versions
// Ensure Java and Kotlin are both targeting JVM 17.
withType<JavaCompile> {
sourceCompatibility = "17"
targetCompatibility = "17"
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "17"
}
// Configure the plugin's compatibility range with IntelliJ IDEA builds.
patchPluginXml {
sinceBuild.set("223")
untilBuild.set("242.*")
}
// Configure the plugin signing task.
signPlugin {
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
privateKey.set(System.getenv("PRIVATE_KEY"))
password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
}
// Configure the plugin publishing task.
publishPlugin {
token.set(System.getenv("PUBLISH_TOKEN"))
}
}