-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
48 lines (41 loc) · 1.07 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
plugins {
id 'groovy'
id 'java'
id 'java-gradle-plugin'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.16.0'
}
group 'io.github.file5'
version '1.0.2'
pluginBundle {
website = 'https://github.com/File5/intellij-idea-guidesigner-plugin'
vcsUrl = 'https://github.com/File5/intellij-idea-guidesigner-plugin.git'
tags = ['gui-designer', 'intellij-idea', 'intellij', 'idea', 'swing', 'java', 'kotlin']
}
gradlePlugin {
plugins {
guidesignerPlugin {
id = 'io.github.file5.guidesigner'
displayName = 'IntelliJ IDEA GUI Designer Plugin'
description = 'Plugin which enables GUI Designer forms compilation.'
implementationClass = 'io.github.file5.guidesigner.GuiDesignerPlugin'
}
}
}
publishing {
repositories {
maven {
name = 'localMavenRepository'
url = '../local-maven-repository'
}
}
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
}