-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
66 lines (54 loc) · 1.14 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
plugins {
id 'java'
id "idea"
id 'org.jetbrains.intellij' version '0.4.16'
}
group 'org.softeng'
version '3.4-SNAPSHOT'
repositories {
mavenCentral()
maven {
name 'gradle-releases'
url 'https://repo.gradle.org/gradle/libs-releases'
}
flatDir {
dirs 'libs'
}
}
configurations {
provided
}
idea.module.scopes.COMPILE.plus += [configurations.provided]
sourceSets.main {
compileClasspath += configurations.provided
}
jar {
into('META-INF') {
from 'META-INF/plugin.xml'
from 'LICENSE'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation name: 'DP-CORE'
implementation group: 'net.sourceforge.plantuml', name: 'plantuml', version: '1.2020.6'
}
compileJava {
sourceCompatibility = '11'
targetCompatibility = '11'
}
intellij {
version '2019.3.3'
plugins 'java'
}
patchPluginXml {
sinceBuild '192'
untilBuild '202'
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}
publishPlugin {
token = System.getenv("intellijPublishToken")
channels 'alpha'
}